Tutorialsplane

All Selector – select all elements in a page- jQuery


All Selector (*) selects all the elements of the page.

All Selector – select all elements in a page with jQuery(*) Syntax

All Selector – select all elements in a page- jQuery Example




<title>jQuery All Selector(*) Example</title>
 
 
  
	

<div> 
Div One..
</div>
<br/>
<div> 
Div Two..
</div>
<p> 
Paragraph..
</p>
<span> 
Span...
</span>


             

Try it »