-
Notifications
You must be signed in to change notification settings - Fork 536
New issue
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
Support for refresh an element #298
Comments
How do you mean "refresh a div". Could you provide a practical example of this? I was thinking you could theoretically replace the contents of one div with another or reassign inner HTML with something like this: <div id="a">Content A</div>
<div id="b">Content B</div> $("#a").load("#b"); But that doesn't appear to have any effect because no content is being specified/loaded |
Here is the example
|
In this particular example, the line prior to
Unless if the
|
To refresh a div I can do this in JQuery:
But I couldn't do that without JQuery. Can you help me?
The text was updated successfully, but these errors were encountered: