Javascript title fetching and image layering

I have several questions and any help will be greatly appreciated!
Looking here: http://jsfiddle.net/Thaikhan/ANLUs/4/
I'm trying to make a system where items can be clicked in and out of a manipulable screen (dragged and re-sized) called .frame.

Code (text):

$(‘.inventory’).on(‘click’, ‘img’, function () {

$(this).resizable({

    aspectRatio: 1,

    containment: "parent",

    minHeight: 50,

    minWidth: 50

});

 

$(this).parent().appendTo(".frame").draggable({

    containment: "parent",

    cursor:…

Javascript title fetching and image layering

See original post by Thaikhan

Leave a Reply