Lilmikeishere
09-21-2012, 10:24 PM
I'm trying to make it so when you click a button, information appears and when you click it again, it slides back.
CSS:
#content{
display:none;
}
HTML:
<div id="content">
context here
</div>
<input type="button" id="myButton">
Script:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script>
$("#myButton").toggle(function(){
$("#content").slideDown();
$(this).val("Slide Down");
},function(){
$("#content").slideUp();
$(this).val("Slide Up")
})
</script>
It works but only for the first poster.
CSS:
#content{
display:none;
}
HTML:
<div id="content">
context here
</div>
<input type="button" id="myButton">
Script:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script>
$("#myButton").toggle(function(){
$("#content").slideDown();
$(this).val("Slide Down");
},function(){
$("#content").slideUp();
$(this).val("Slide Up")
})
</script>
It works but only for the first poster.