jquery - nextUntil


/ Published in: JavaScript
Save to your folder(s)

Then, your code should look like this ...

$(document).ready(function() {
$("dt > a").click(function(){
$(this).parent().nextUntil('dt').toggle();
return false;
});
});

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.