I have done a hide and show of a div element, on clicking a
element with class toggleIt by using the toggle() function. But how to change the name of the p tag after clicking it?
For eg, I have the name as 'Hide' for the p tag. On clicking this I hide a div. Now, I also want the name to change to 'Show'. How do I do that?
<p class="toggleIt">Hide</p> //want this to change to 'Show' after clicking
$('.toggleIt').click(function(){
$('#common_fields').toggle();
});
