Reputation: 2774
Is there a way to reload JavaScript within a DIV block without doing a page refresh?
Thanks!
Upvotes: 0
Views: 100
Reputation: 2296
You can evaluate the javascript, say in a string
var script = "...";
by calling the eval function
eval(script);
Upvotes: 1