I'm wondering if you guys can help me to perform on-demand javascript using AJAX? If you can help me with a simple example, I would really appreciate it.
my question is: how to get a javascript code from my server and execute it?
Thanks for the help
|
I'm wondering if you guys can help me to perform on-demand javascript using AJAX? If you can help me with a simple example, I would really appreciate it. my question is: how to get a javascript code from my server and execute it? Thanks for the help |
|||
|
|
|
If you really want to use AJAX (as stated in the question) you can do so too. First, you download the javascript normally using XMLHttpRequest and when the download is finished you either eval() it or insert it inside a generated tag.
Also, Steve Souders has done amazing job in this field and I can highly recommend watching his talk on this video. |
|||||||||
|
|
In fact, you don't even need to use AJAX for this. Simply append a new Plain Old Javascript:
Here's the same code using jQuery:
Here's the same code using MooTools:
|
|||||||||||||||||||
|
|
I made the following function for being able to load JavaScript files programmatically: Usage:
Implementation:
I use a callback function argument, that will be executed when the script is loaded properly. Also notice that the Check an example usage here. |
|||
|
|
|
I use this code to load-on-demand (using jQuery). Its blocking (but i need it) you can make it synchronous using
It uses jQuery and Underscore.js for |
|||||||||
|
|
Get the JavaScript code from the server enclosed in tags, append it into DOM and execute a function. The function name to execute could come with the same request or it can be predefined. What do need this for? Perhaps if you could elaborate your goals, a more straightforward method could be found. |
|||
|
|
Javascript gets from the web server to the user's browser in a couple of ways:
|
|||
|
|
|
CMS has shown a solid (looking, haven't tested) library independent method. Here's how you do it in Dojo.
You may need to specifiy the path to your namespace (ie: root folder)
See the doc for more info. |
|||
|
|