Jquery onclick function HELP!?
-
Well I'm on a fairly easy task I believe, but needs some help though. I have two buttons with two images underneath. Both of the images has a different class. I want the image under button 1 to be displayed by default, while the image under button 2 is hidden. And whenever button 2 is clicked I want the image from button 1 to be removed and the button 2 image displayed. And vice versa. I wanna use Jquery for the effect and was wondering if I could use the CSS property "display" to do this. I believe toggle is used in jquery to toggle the display property. But please someone help me. Heres some of the HTML. <div id="menubar"> <h3 class="clickme">News</h3><h3 class="clickme1">Dashboard</h3> <img src="line.png" class="chosen" /><img src="line.png" class="unchosen" /> </div> Unchosen = image not to be displayed by default. Hidden untill user clicks "Dashboard". Chosen = image to be displayed by default. Visible untill user clicks "Dashboard" and vice versa... Please help me anyone. Thanks in advance.
-
Answer:
General Example: <script type="text/javascript"> $(document).ready(function(){ $('#btn').click(function(){ $('#one,#two').toggle(); }); }); </script> <div id="one"></div> <div id="two"></div> <button id="btn">toggle</button>
FistAJay at Yahoo! Answers Visit the source
Other answers
Some examples here:
ray_diator
Related Q & A:
- How to call jQuery function with multiple parameters?Best solution by Stack Overflow
- How to access a nested function from another nested function in javascript?Best solution by devarticles.com
- How to fire a function before and after automatically in a jquery plugin?Best solution by catchmyfame.com
- How to wrap jQuery function in a div?Best solution by Stack Overflow
- Domain function help?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.