The script-tag tag has no wiki summary.
0
votes
1answer
19 views
How can I pass config parameters to the scripts I load?
Some JavaScript libraries pass config parameters to the script at load time.
For example:
in dojo (async mode):
<script src="dojo.js" data-dojo-config="async:1" ...
1
vote
0answers
28 views
Does google index script tags as content when using handlebars.js
If you use the standard handlesbar.js implementation, does Google view the content within the custom script tags as content, script or unknown content?
0
votes
1answer
33 views
How can I get content of all scripts in HTML
I am making a Java program, which involves extraction of tags from a webpage.For parsing, i am using Jsoup, which is working fine.But there is some problem with number of tags in the downloaded ...
0
votes
2answers
88 views
JQuery selector to match a dynamically loaded script tag
I want to match any raw script in an Ajax downloaded document, so I tried
$.ajax({
url: url,
type: "post",
success: function (data, status, xhr) {
var scr = ...
3
votes
1answer
171 views
DOMDocument remove script tags from HTML source
I used @Alex's approach here to remove script tags from a HTML document using the built in DOMDocument. The problem is if I have a script tag with Javascript content and then another script tag that ...
0
votes
0answers
41 views
script onload not firing in Android
I'm trying to load jQuery conditionally and the onload function is not being called when running my app on android devices. It does work in Chrome and iPhone.
if (!window.jQuery) {
var ...
0
votes
2answers
38 views
Does script async tag preserve script order of execution?
All concerns of combination, minification, gzipping, and cache aside. Does marking a script as async still preserve script execution order?
Say I have a page where jquery is included at the top ...
0
votes
3answers
225 views
Get the content of a cross domain script tag
I created a new programming language in JavaScript and I want users to be able to include it in their web pages just like any other script using the script tag:
<!DOCTYPE html>
<html ...
0
votes
3answers
113 views
jQuery ignores <script> tags on div reload
I am reloading a div within my page to reflect variables which have been updated by the user. With my present method the variables are written into the page via a script tag that is imbedded in the ...
0
votes
1answer
165 views
Managing script block/command output for web pages in Java
I've been looking around StackOverflow and doing broader searches to find some information about managing the output of JavaScript commands in a JSP page. I'm not a Java developer so I'm asking for ...
1
vote
3answers
114 views
What is the reason/background that the <script> tag is not part of the Same origin Policy
The last months I read a lot about the Same Origin Policy of browsers and Cross Domain Requests.
All the time I am wondering, for what reasons the <script> tag is not part of it?
I found the ...
1
vote
1answer
561 views
Javascript loaded through ajax cannot call functions in later script blocks
I have 2 HTML files, 1.html and 2.html.
1 is the main page, which loads 2 by ajax and stuff its content into a div.
In 1, there are 3 script blocks - A, B, and C.
The $(document).ready() in block B ...
0
votes
0answers
18 views
So… having some trouble figuring out async and defer. Help, please?
I actually have two separate use cases.
Use case A:
I have a hard-coded markup script tag, which I would like to load and run as soon as possible but not interfere with the rest of the page loading. ...
4
votes
1answer
2k views
HTML/Javascript: how to access JSON data loaded in a script tag with src set
I have this JSON file I generate in the server I want to make accessible on the client as the page is viewable. Basically what I want to achieve is:
I have the following:
<script id="test" ...
0
votes
4answers
171 views
Do non-“text/javascript” type'd <script> tags block DOMContentLoaded while they download?
Normally, external-file javascripts block window's load and DOMContentLoaded events, like, for instance, if we were to have:
<script src="http://so.me/file.js"></script>
...then the DOM ...
0
votes
1answer
141 views
Can't include more than one js file. Onload event fires only for the last file but as many times as I have files. How to solve it?
I want to append several js files dynamically. Each file has a function definition and I want to save its code in the property of an object. I use plain JavaScript and script tag. But onload event ...
1
vote
0answers
102 views
Loading jQuery plugin outside yepnope
I'm using yepnope to load jquery, and a bunch of plugins.
I fix the onready "problem" using:
var docready=[],$=function(){return{ready:function(fn){docready.push(fn)}}};
yepnope({
...
0
votes
4answers
435 views
Using script tag to pass arguments to javascript
I need to implement a cross-site comet http server push mechanism using script tag long polling. (phew...) For this, I dynamically insert script tags into the DOM and the server sends back short js ...
1
vote
1answer
103 views
<script> not returned in AJAX
I am creating a WordPress theme and using AJAX to load new archive pages. The problem is that the whole < script type="text/javascript">//something//< /script> is not returned in the ...
1
vote
1answer
63 views
Can the string “</script>” cause any problems when returned as part of some JSON data?
There are no inline scripts involved, whatsoever. I have an external file script, which fetches some JSONP from twitter. Let's suppose that a property of the object represented in the returned JSONP ...
0
votes
2answers
163 views
External JavaScript content reference
Adding this tag for importing an external JavaScript file
<script onLoad="alert(this)" type="text/javascript" src="script.js"></script>
to the head of an HTML page shows
[object ...
0
votes
3answers
298 views
How to send GET request without any parameter in EXT-JS
In Java script when we send GET request it goes without adding any parameter, But in EXT-JS it auto add CallBack parameter. (i checked with Wireshark & firebug)
we are able to see xml on browser ...
0
votes
0answers
194 views
loading scripts when pjax do its job
i have project in MVC CodeIgniter framework and i have for each view its javascripts, and it is on end of that view.
Now when pjax load that page, it should load script, but it doesnt.
Script tag is ...
0
votes
1answer
203 views
JSONP request with jQuery that doesn't append a “callback” parameter?
I have a local version of a JSONP response saved as a file so I can test my single-page web app from the local filesystem when I don't have an Internet connection.
It works fine when I load it ...
3
votes
3answers
120 views
Read javascript file in browser despite syntax error
Let's say I have a csv on a domain that I don't control at all and I want access to it on my page:
<script src="http://domainidontcontrol/blah.csv"></script>
Of course, this will throw ...
0
votes
1answer
139 views
Trying to update the function in script tag using jQuery
I am creating a debugger utility to help me out in debugging without the to follow cumbersome process of redeploying and going to all the way to the page to test it.
so I have created the below ...
0
votes
3answers
717 views
Prevent script injection with innerHTML
I have written a micro-templating utility that uses innerHTML to inject html fragments in a Web page, based on user input (either plain text strings or html strings).
My main concern is the risk of ...
2
votes
2answers
149 views
Do running script tags block other script tags from downloading?
This is from the index.html in HTML5 Boilerplate, just before the </body> tag:
<!-- JavaScript at the bottom for fast page loading: ...
2
votes
1answer
381 views
handling errors in youtube data api in javascript
One of the successful load is like that:
http://gdata.youtube.com/feeds/api/videos/N7m86aMNjlQ?callback=jsonp1335008664824&alt=json-in-script
However, when the video is private or doesn't exist, ...
2
votes
3answers
4k views
How to force a script reload and re-execute?
I have a page that is loading a script from a third party (news feed). The src url for the script is assigned dynamically on load up (per third party code).
<div id="div1287">
<!-- ...
0
votes
1answer
389 views
Silverlight 5 Out of Browser http streaming of JavaScript blocks using webbrowser
Some background: I have inherited a working Silverlight application which behaves as follows:
there is an iframe on the host html page which itself connects to another page.
this page is a ...
1
vote
2answers
324 views
vim automaticaly formatting html files with tidy and <script> tag with Jsbeautifull
How can I format html files in vim using tidy and format just the contents of the script tags using Jsbeautifull?
I have this command: :%!tidy -i -xml --char-encoding utf8 --wrap 0 --show-errors 0 ...
0
votes
2answers
443 views
Use script tags for cross-domain ajax
I read this article and this. How can I adopt using script tags to query cross domain for the following:
var nytimes_api = ...
0
votes
2answers
526 views
Sencha Touch JSONPinclude via https doesn't work on some android devices
I have got a scripttag proxy that reads json data from a remote https url. In the emulator, on iPhones and on some android devices it works. But there are some Androids (HTC Desire and a Motrola ...
1
vote
1answer
122 views
Weird issue in IE when setting element's innerHTML attribute to contain a script element
I'm having a weird issue in IE when I set an elements innerHTML attribute to a string that contains a script element.
What happens is, when innerHTML is set like:
domEl.innerHTML = "<script ...
2
votes
1answer
906 views
SCRIPT tag removed from AJAX response in Internet Explorer
In our current project some code is returned with AJAX and we use innerHTML to place this code inside a DIV.
Now we search this DIV for all available script tags and EVAL() the contents of these ...
1
vote
1answer
249 views
HTML5-style script-tags in older browsers
It has been stated that in HTML 5 it's OK to use script-tags for Javascript without any attributes, like this:
<script>
// the javascript here
</script>
With other features in HTML 5 ...
2
votes
2answers
261 views
Why is a script tag deleted automatically by Chrome?
everyone.
I don't use jQuery. I create a script tag and append it to head tag to get JSONP data. After JSONP callback function is executed, the script tag which is just added to head tag by me is ...
1
vote
3answers
459 views
Can't append a script to head
var script = document.createElement( 'script' );
script.type = 'text/javascript';
script.src = 'http://www.mydomain.com/bleh.php';
script.id = 'rawr';
$('head').append(script);
...
0
votes
2answers
676 views
<script> tags in ajax response not being parsed by IE <= 8
I have a page that uses jQuery's $.post() method to get some html and inside the html is a tag.
My code looks something like this:
$.post( 'myUrl',
{ someData : 'someData', moreData : ...
1
vote
4answers
2k views
Dynamically added script will not execute
I am dynamically adding a script of a github gist. If I added it to the html before the page loads, the script will execute. But If I try to add it to the page after it loads it adds the script to the ...
0
votes
1answer
648 views
Sencha Touch ScriptTagProxy only works on localhost and not pulling a remote source?
I have been spending a few days trying to get my Sencha Touch application to work, so that it uses a JSON feed to populate a news table, the code below now works fine on localhost but as soon as I ...
3
votes
5answers
3k views
How can I read a JSON in the script-tag from JavaScript?
I have a dynamically generated page where I want to use a static JavaScript and pass it a JSON string as a parameter. I have seen this approach used by Google (see Google's +1 Button: How do they do ...
2
votes
2answers
442 views
JavaScript dependency injection via dynamic <script> tag
Using JSONP in vanilla JavaScript via creating a <script> tag with a src led me to consider using that same method for dependency injection in JavaScript plugins and other JavaScript components ...
1
vote
1answer
69 views
What bad things can a user do in a browser without the script tag?
I have an entry form where the user can type arbitrary HTML. What do I need to filter out besides script tags? Here's what I do:
userInput.replace(/<(script)/gi, "<$1");
but the sanitizer ...
2
votes
2answers
391 views
asp.net 2.0 site and location of <script/> tags causing problems/conflicting
I have no idea how to describe this accurately/intelligently because it seems to be completely impossible, yet there must some reason for it.
I am trying to leverage jquery, jquery-ui, qtip (tooltip ...
0
votes
2answers
145 views
JS variable scope and script sources
I have a variable defined in script tags within the head of the document:
<?php if (isset($_SESSION['logged_in']) && $_SESSION['logged_in'] == true) {
echo '<script>var userdir = ...
6
votes
4answers
2k views
multiple versus single script tags
Is there any difference (performance, best practices, etc) between using a single script tag with embedded code in it, or using multiple script tags with the same code spread all over the HTML?
For ...
3
votes
1answer
272 views
What's the point of Content-Script-Type and Content-Style-Type
From the W3's documentation on Scripting,
In the section The default scripting language:
Authors should specify the default scripting language for all scripts in a document by including the ...
0
votes
1answer
424 views
NS_ERROR_XPC_BAD_CONVERT_JS with document.write
I'm pulling in a 3rd party JavaScript file which makes use of document.write, but what's being written needs to be manipulated - preferably before it hits the page. What I've come up with is the ...

