We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
$().html()
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?
The text was updated successfully, but these errors were encountered:
@ownede could you provide for of your code? Its hard to diagnose without more context.
Sorry, something went wrong.
No branches or pull requests
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:
...
I got an error message saying:
Any workarounds?
The text was updated successfully, but these errors were encountered: