I have to get all the image tags ids inside a particular div. How can I get that using JQuery?
Use a child selector. So your saying I want all of the child 'img' elements of div #myDiv
$("#myDiv > img").css("border", "3px double red");
http://api.jquery.com/child-selector/