Hi can someone please tell me why this code is incorrect? I'm trying to pass two variable values to a function.
$( "#resizable-text1, #resizable-text2" ).draggable({
containment: "#containment-wrapper1",
scroll: false,
stop: function(event, ui)
{
var id = $(this).attr('data-idSuffix');
adjust_pos($('#resizable-text',id));
}
});
function adjust_pos(elem, id) {
alert('elem = '+elem)
alert('id = '+id)
var currentPos = $("#"+elem+id).position()
var xpos = parseInt(currentPos.left)
var ypos = parseInt(currentPos.top)
then use variables ele and id...
}
Any help appreciated.
$(this).attr("data-idSuffix")use$(this).data('idSuffix')as jQuery (since version 1.5 or so) understands "data-" attributes already. – Pointy Jan 29 '12 at 15:07