Click here to Skip to main content
16,007,932 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello EveryOne,

Drag and Drop TextBox Control into another panel using jquery


Solve out my problem ASAP.

Thanks
Posted

jquery code in drag and drop textfield

<a href="#" id="menu" onchange="add_textbox_drop" > Textbox </a>


$(function () {

$("#menu").draggable({
revert: "valid"
});


$('#menu').droppable({
drop: function (event, ui) {
var parenttd = $(this).attr('id');
//alert("parenttd=" + parenttd);
$(this).append('');
}
});
});
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900