How to get div whose id start with “panel” from page body using jquery
Query : How to get div whose id start
with “panel” from page body using jquery.
solution : $('div[id^="panel_"]')
the above jquery script will return you
list of div whose id start with “panel”.
Comments