This is my first day of jQuery, so bare with me. Currently, I am adding an element to my parent container by doing the following:
var uploadedContainer =$('#uploadedimages');
var uploadedItem = '<div><span>'+file.name+'</span><span><a class="mylink" href=remove.aspx?img='+safeUrl+'>Remove</a></span></div>';
uploadedContainer.append(uploadedItem);
While it works, I'm not sure if that's the right way to accomplish this task. Also, is it possible to add the element to the parent, and fade the child element in? An example of usage would be great!
Thanks! George