Jump to content

hide div onclick


Jaswinder

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.