And here is some more text. Bladibladibla
And here is some more text. Bladibladibla
And here is some more text. Bladibladibla
class firstLine, I want the paragraph immediately
_below_ it to disappear if it is visible. If it is invisible, I want
it to show again.
This
$(document).ready(function(){
$(".firstLine").click(function(){
var el = $(this).next();
$("el:hidden").click.slideDown("slow");
$("el:visible").click.slideup("slow");
});
});
doesn't work.
How can I do this?
Thanks