I have some HTML I want to process with jquery.Pretty simple but I cannot get around getting all the elements with the same class:\[code\]<div class="myclass on"></div><div class="myclass off"></div><div class="myclass on"></div>\[/code\]If I do this\[quote\] $(".myclass")\[/quote\]I get only one. Any help?EDITI actually only want the 'myclass on' to nest some html in each one to get this:\[code\]<div class="myclass on"><img src="http://stackoverflow.com/questions/15696327/bar.png"></div><div class="myclass off"></div><div class="myclass on"><img src="http://stackoverflow.com/questions/15696327/bar.png"></div>\[/code\]