Tagged Questions
2
votes
2answers
130 views
Included JS in iframe has context of top frame window
$('<script/>', {
src: '/path/to/javascript.js',
type: 'text/javascript'
}).appendTo($('#iframe').contents().find('body'));
Correct me if I'm wrong, but I think that should load the JS ...
2
votes
2answers
881 views
Load content as an element scrolls into view
I have a list of search results in a <div> element with a static height and overflow: auto; in the style. I would like to load only the first x number of search results (e.g. 20), and load ...
1
vote
0answers
101 views
Single page web app, dynamic loading and memory etc
I am looking to build my first single page web application I have been looking at a variety of frameworks backbone.js, JavaScriptMVC and Sammy.js to name but a few used with JQuery. I am left with ...
1
vote
2answers
1k views
Forcing a dynamically loaded javascript to not cache on google chrome
I'm working on a google maps loader (using the google maps javascript API). I want to dynamically add points to a path as and when they come available. Edit: The webpage and javascript are stored ...
1
vote
1answer
122 views
How to activate a script after the button is press? [JQuery]
I need to activate cpa lead when the button is press.
code:
<script type="text/javascript" src="http://www.cpalead.com/mygateway.php?pub=52514&gateid=NjE1Njk%3D"></script>.
And ...
1
vote
3answers
380 views
How to dynamically add a Javascript function (and invoke)
Based on a click event on the page, via ajax I fetch a block of html and script, I am able to take the script element and append it to the head element, however WebKit based browsers are not treating ...
1
vote
4answers
500 views
Error handling in Dynamic JS loading
I am loading a JS file needed only for one part of my web page, only when the user navigates to that tab on the page.
var scriptFile = document.createElement("script");
...
1
vote
3answers
881 views
How to abort the loading of an external HTML resource, from JavaScript?
I'm writing a JavaScript widget, which is intended for use on other website and loads additional script files from my own web site (which basically means no XHR due to cross-domain limitations). Now I ...
0
votes
2answers
84 views
How to do a success callback when loading JS includes from another script file
I have legacy web app situation where I can't load jquery.min.js from a script tag in the HTML markup.. so I have to load it with some js in another existing script file
var head = ...
0
votes
1answer
276 views
ExtJS4 Error : Uncaught Ext.Error: Cannot create an instance of unrecognized alias: layout.border
Here is the index page using extjs4's new dynamic loading feature
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
...
0
votes
2answers
554 views
jQuery getScript() vs document.createElement('script')
Assuming that both of these approaches load the script properly, and that I wait the appropriate amount of time before using the script (and/or use a callback), what are the major differences between ...