Jaswinder Posted April 23, 2014 Share Posted April 23, 2014 hi everyone. i have three divs. what i want to achieve is on clinking the 2nd div , hide the 1st and 2nd both divs and show the 3rd.. what i did still now is . <div class="first"> some text </div> <div class="mid">button</div> <div class="end"> some text </div> <script> $('.mid').click(function() { var $group = $(this); $group.prev('.first').toggle('slow'); $group.hide(); $group.next('.end').toggle('slow'); }); i am not able to hide the mid div, Toggle effect is working perfectly on both other divs Link to comment https://forums.phpfreaks.com/topic/287963-hide-div-onclick/ Share on other sites More sharing options...
denno020 Posted April 23, 2014 Share Posted April 23, 2014 What's the effect you're after? I don't understand.. Link to comment https://forums.phpfreaks.com/topic/287963-hide-div-onclick/#findComment-1477065 Share on other sites More sharing options...
Jaswinder Posted April 23, 2014 Author Share Posted April 23, 2014 Thanks for reply .. but i get it solved, there is a css issue, which stopping me from doing it. what i want to achieve was.. when i click on my mid div, the first and mid both divs get hide and end div shows up Link to comment https://forums.phpfreaks.com/topic/287963-hide-div-onclick/#findComment-1477086 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.