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

Popular posts from this blog

What is ACID properties and How SQL Server Comply to the same

Polymorphism concept

SQL Function VS StoredProcedure