vote up 0 vote down star

$().load(1.html,script) is inside main.html.

It'll execute the "script" after 1.html is loaded into DOM.

But now I want to put the "script" inside 1.html itself.

How to make it run when loaded into main.html?

flag

40% accept rate

1 Answer

vote up 0 vote down

The jQuery load method will execute any code placed in script tags in the HTML DOM it loads. So all you need to do is to place your javascript inside script tags in 1.html.

link|flag
You mean scripts in 1.html will automatically wait until 1.html is loaded ? – Shore Sep 8 at 3:37
I've tested it and it seems you are right.But I'm extremely curious how this kind of feature is implemented?Or that's the default manner a browser deals with scripts in ajax loaded file? – Shore Sep 8 at 3:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.