Any idea why the piece of code below does not add the script element to the DOM?
var code = "<script></script>";
$("#someElement").append(code);
|
Any idea why the piece of code below does not add the script element to the DOM?
| |||||||||||
feedback
|
|
I've seen issues where some browsers don't respect some changes when you do them directly (by which I mean creating the HTML from text like you're trying with the script tag), but when you do them with built-in commands things go better. Try this:
| |||||||||||||||||||
feedback
|
|
The Good News is:
Just add something inside the script tag such as Karl Swedberg has made a nice explanation to visitor's comment in jQuery API site. I
The next thing is, I'll summarize what's the bad news by using And The Bad News is..
I'm not joking, even if you add If you fully understand what your code does, than this will be a minor drawback. But if you don't, you will end up adding a Workaround.
If you don't want to lose debugging capability, than you can use javascript native HTML DOM manipulation. Consider this example:
There it is, just like the old days isn't it. And don't forget to clean things up whether in the DOM or in the memory for all object that's referenced and not needed anymore to prevent memory leaks. You can consider this code to clean things up:
The drawback from this workaround is that you may accidentally add a duplicate script, and that's bad. From here you can slightly mimic
This way, you can add script with debugging capability while safe from script duplicity. This is just a prototype, you can expand for whatever you want it to be. I have been using this approach and quite satisfied with this. Sure enough I will never use jquery Happy Coding, | |||||||||||||||
feedback
|
|
What do you mean "not working"? jQuery detects that you're trying to create a SCRIPT element and will automatically run the contents of the element within the global context. Are you telling me that this doesn't work for you? -
Edit: If you're not seeing the SCRIPT element in the DOM (in Firebug for example) after you run the command that's because jQuery, like I said, will run the code and then will delete the SCRIPT element - I believe that SCRIPT elements are always appended to the body... but anyway - placement has absolutely no bearing on code execution in this situation. | |||
|
feedback
|
|
It is possible to dynamically load a JavaScript file using the jQuery function
$.getScript('http://www.whatever.com/shareprice/shareprice.js', function() {
Display.sharePrice();
});
Now the external script will be called, and if it cannot be loaded it will gracefully degrade. | ||||
|
feedback
|
|
This works.
I am not really sure why, but it seams like ither jquery is doing something clever with scripts or some browsers dont like to have scripts added like html/text. O and this also the way to add scripts to an iframe.
| ||||
|
feedback
|
|
Here's how google analytics would do it:
| |||||
feedback
|
|
I want to do the same thing but to append a script tag in other frame!
| |||
|
feedback
|
The | |||||||||
feedback
|