I am trying to concatenate my div to images within it using jquery variable. Not sure how to do this. Thanks for any helps.
var pictureDiv = $('#pictureDiv');
pictureDiv.css('height','500');
//I want to change image within my pictureDiv and
//want to use my pictureDiv variable..
pictureDiv.img??
//I also want to change p tag within my pictureDiv and
// want to use my pictureDiv variable..
pictureDiv.p??
.find(), as inpictureDiv.find('img')or whatever.