I have a function that makes the dialog get draggable enabled but I need to be able to edit an input within this dialog. How do I just make this input not inheriting draggable from parent dialog?
function to leave draggable enabled:
function addDraggable(identifier, cancel) {
$('.'+identifier).parent().draggable({
cancel: cancel + ", :button"
});
focusInputText();
}
function focusInputText() {
$( 'input[type=text].urlCam' ).click(function(event) {
event.preventDefault();
$( this ).focus();
});
}