dependsOn
dependsOn copied to clipboard
Issues with form loaded via AJAX
Hello,
In my app, I'm showing a modal window, which a form, that is being loaded via AJAX.
It's HTML is added using $().html()
jQuery method.
Unfortunately, even when adding dependencies after adding HTML form content, as seen below:
$('.ajax-content', modal).html(response);
initProductDependencies();
...
function initProductDependencies()
{
$('#something').dependsOn({
'#otherthing': {
checked: true
}
});
}
I got an error message saying:
Uncaught TypeError: Cannot read property 'nodeName' of undefined
Any workarounds?
@ownede could you provide for of your code? Its hard to diagnose without more context.