Lines Matching refs:url
361 this.loadScript = function (url) {
362 if (!/^[a-z]{3,5}:\/\//.test(url)) { // dummy test for remote prefix
363 url = this.options.contextPath + '/' + url
365 if (url in this.scriptsDownloaded) {
366 return this.scriptsDownloaded[url]
368 return this.scriptsDownloaded[url] = $.ajax({
369 url: url,
374 console.debug('Failed to download "' + url + '" module')
1205 url: $(this).data('markdown-download'),
1273 * multiple lines of code and use that url to send it to somebody else.
1360 * Set parameter in the given url.
1361 * @param string url
1364 * @returns string the modified url
1366 function setParameter(url, p, v) {
1367 var base = url.substr(0, url.indexOf('?'))
1368 var params = url.substr(base.length + 1).split("&").map(