Can a Client Link to My JavaScript, Hosted on a Different Domain?

Posted by DaveDev on Stack Overflow See other posts from Stack Overflow or by DaveDev
Published on 2010-03-26T09:27:16Z Indexed on 2010/03/26 9:33 UTC
Read the original article Hit count: 235

Filed under:
|
|
|

Is it possible for me to supply a client with a snippet of HTML which contains a reference to a javascript file that I host? They want to paste this HTML into their CMS, so that when their page loads, it'll load our content.

I was under the impression that there was cross domain security preventing this from being possible.

What if, instead of linking to the JavaScript, I gave them the snippet of HTML with the JavaScript already included

so instead of

<div>
    <!-- link to js -->
</div>

I gave them

<div>
    $.get(/*url to my content*/);
</div>

Would that work?

© Stack Overflow or respective owner

Related posts about JavaScript

Related posts about jQuery