Loading Scripts As Strings into the DOM with JQuery

Here’s why JavaScript is teh awsome:

var ns = {};
$(document).ready(function () {
$(‘<scrip’+’t>ns.blah=function(){alert(“hi”);};</scr’+’ipt>’)
.appendTo(‘body’);
ns.blah();
});

With this I get:

image

Here play with it yourself.

http://www.jsfiddle.net/nVuNZ/

Consider the deployment and update scenarios enabled using this technique with a modular application pattern.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: