Jquery show function issue - not animating or showing the hidden paragraph, why
- by dave
Here is the html:
$( document ).ready( function( )
{
$( "#testing" ).click
(
function( )
{
$( "#testing2" ).show( "slow" );
}
);
}
);
…