hello.. kind of confusing how to make it work..
i want to use a one button for hiding and showing div..
$(document).ready(function() {
$(".Email").hide();
$("#change").click(function ()
{
$(".Email").slideDown("slow");
$("#change").html("Hide");
im using jquery .. when you click the button it will show the div then the button caption will be "Hide" and my dillema starts here.. dunno how to work that changed caption button to be use for hiding the div... thanks