Thursday, April 28, 2011

How to use jQuery Wildcard/Start with Selector

Start with:
$("[id^=partofID]").show();

Wildcard:
$("[id*=partofID]").show();
Attribute Starts With Selector 
[name*="value"]

No comments:

Post a Comment