I have a placeholder and want to show it using JQuery. Now in placeholder I cannot have style="Visibility:hidden"
so I have to set the Visible
Property to False
, hence Jquery not able to find it.
My question is how do I set the visibility on JQuery load function instead, have tried following with no success(bare in mind my controls have this extra characters at beginning so need by ClientID):
$('div[id*=phAdd]').hide();
$('div[id$=phAdd]').hide();