How can I access the values of "runit" and "property2"?
$("#selector").draggable({
property1: "myvalue",
property2: "myvalue",
property3: "myvalue",
start: function() {
var runit = 'one value';
},
stop: function(){
//Access Value of runit
//Acess Value of property2
}
});