Loading Javascript through an AJAX load through jQuery??

Posted by Jason Axelrod on Stack Overflow See other posts from Stack Overflow or by Jason Axelrod
Published on 2011-01-07T14:21:54Z Indexed on 2011/01/07 14:54 UTC
Read the original article Hit count: 171

Filed under:
|
|

I have an javascript that I place into a page using the code below. What the code does is place an object/embed code into a webpage. Simple javascript loader to a NicoVideo movie

<script type="text/javascript" src="http://ext.nicovideo.jp/thumb_watch/sm13154955?w=640&h=395"></script>

This works great in a webpage. But what if I want to load this javascript into a page using AJAX? This no longer works for the obvious reasons, you would need to eval the script in order to get it to run. However, I have no idea how to do this. I am using jQuery on my page; so keep that in mind. I have tried the following code, but it doesn't seem to work through AJAX, or even in a normal page load environment.

<script>$.getScript("http://ext.nicovideo.jp/thumb_watch/sm13154955?w=640&h=395");</script>

Any ideas on how I would get this to work?

© Stack Overflow or respective owner

Related posts about JavaScript

Related posts about jQuery