Browsers Off Not Access <script Type="text/javascript" Src="...files?
Apr 17, 2009
just came across this in a book for browser javascript on/off detection:
Code:
<noscript>
<img src="monitor.php?scriptoff=true" />
</noscript>
just wondering if browsers when js is off will ever access any
<script type="text/javascript" src="file.js"></script>
files? i mean wouldn't it be better not to bother with the noscript thing and just be aware of if file.js is accessed? or do some browsers access the file.js even when js is off?
Could anyone link me to an example of how to read a text file into a javascript variable using mootools or jquery(or explain it yourself)? Mootools would be preferred because my jquery framework is a little archaic.
I can't find a very comprehensive example only directions for how to make requests and the examples don't explain how to use the input. Oh and I'll be using this script on my website and the text file will be located on the same server.
I've been working in VBA for quite some time, and would like to make some of my scripts available through a browser. One script will open a text file, parse it, and then commit the parsed results into an object. I can't for the life of me figure out how to do this task in js...
I have designed a mail service in java.In my compose page,i want to attach some excel files of text files and to send it.After sending i want to store it my database.Then how can i download or open that file after opening that recipient mail inbox.
I am trying to upload multiple files using file input. And I am able to do that using "multiple" attribute of input type file. I can not use file API as I am using python on server side. So after user has selected the files, I want to access those file names in file input to let user cancel any file before uploading and upload rest of the files. The "value" attribute of input file does not work as it doesn't let me write.
For a calendar project implemented with pure HTML/CSS/JS I need to access local data files (.ICS). These ICS/iCal data has to be accessed also by other applications (eg. sync, backup, etc).Can anyone point to a possible solution to use HTML5 compatible calls (or jQ plugin) AND how to access the localStorage files also from the other apps.
I have a Web application and the web resources like jss,css,jquery files are located outside of the WEB-INF directory (Java application) and if some user or hacker change the URL could see the source code for many js and jquery files.
I have to change text input type to password input type and i am using jquery script. This script work for FF, Chrome and Safari browser but not worked on ie7, ie8.
Script is as:-
How can i update my script, so that it works cross the browser.
I am wondering if anybody can provide statistics what is percentage of visitors with disabled JavaScript.
Even more interesting would be statistics of users with disabled JavaScript making a purchase. I am more likely to purchase from my home than from work and I think the disabled JS is mostly result of IT dept. policies.
Is e-commerce site missing much if requires JavaScript?
Q: I have a pretty big html page - about 1,500 lines of code, 1,000 of which is javascript. (It's also referencing other javascript code, perhaps another 2,000 lines or so).
When I boot up the page in a fresh browser, it invariably crashes; the page just hangs. But, after killing the browser, and opening it up in a new one, the page seems to run fine. Is there some sort of javascript code limit that a web page / browser can handle...? Anyone know if there's a way to get around this? [Did I misread the problem? I'm pretty sure my code is fine.] Code:
I have a lot of JavaScript code I wrote to add special features and effects to my Web sites. The problem is, with the latest versions of Web browsers, all browser-side scripts are blocked. Most users who visits will either not know how to adjust their security features to allow scripts or will not want to change their settings. In a case where the script is vital to the functioning of the Web page, what is the alternative?
For example, one of my script is for a drop-down menu that takes the user to the selected section from the drop-down menu.
The other feature I need is roll-over that highlight parts of a map so that the user can make a selection.
Is there something I can add to my JavaScript code to prevent browsers from blocking it or is there a different way of using these features with a different script?
I'm considering in teaching myself some javascript, but before I take the time to read up and experiment, I had a few questions.
Is javascript XHTML 1.0 STRICT Valid? Is javascript valid for any version of XHTML? Is javascript easily cross browser compatiable, or will this take a long time to work around?
I'm currently using this method to refer to my JavaScript files:
<script type="text/javascript" src="filename.js"></script> While doing work for some clients I have made changes to the the JavaScript file referenced above. Because their browser has cached it, they end up getting errors on the page unless they hard refresh and get the new version of the file.
Is there anyway to make the JavaScript file come down fresh if it has been modified since the last download?
Ho can i change the endoing type of the browser through the Javascript?
I am working on the bi-lingual project. In this there are 2 languages Greek and English. I am showing the data on the page but it is not in proper character set i.e. encoding.
The default encoding of the page id ISO-8859-1 i.e. english. But for the Greek characters it should be ISO-8859-7. I am not able to change the encoding (charset). can you please provide me a function by which i can change the charset of the page?
I just picked up JQuery yesterday and I am trying to access the text of a dynamically created text box.[code]The problem is in the btnSave.click function the message always says that the .val() is undefined even when there is text in the textbox.
I have a custom object named #cdata-section, however I am unable to access this object and get a run time "Illegal Character" javascript error. my object looks like this:
data.news.story[i].body.#cdata-section
The pound sign is causing problems. How can I use this object in my javascript source? Right now I'm trying something like this to escape the pound sign:
Lets say you have a 1000 line javascript file which is linked to an everyday html file. The browser is set, by default, cache the linked javascript file (after downloading and interpreting it).
But once it's cached and put into a temp directory on the client's computer, is the cached file in an already parsed format? Or something relative? Or is it in the same format as it was on the server-side? This would mean that the .js file is parsed each time the exact same way (as long as the file itself is not changed, deleted, or renewed on the server-side).
I have been struggling with a cross browser solution to loading external javascript files on the fly.
I have been successful using the following code in IE6:
var newScr = document.createElement("SCRIPT"); newScr.src = "newScr.js"; newScr.type="text/javascript"; document.getElementsByTagName("head")[0].appendChild(newScr);
I believe the reason is that IE is loading the external file syncronously while Firefox is not. Is there an onload event for creating an element (if so I do not see it in Venkman). I have seen the solution of using XMLHTTP to load the script but I am trying to get around any dependency (atleast at this stage of the library) on activex.
4. In Firefox, it works beautifully ( no shock ) 5. In IE it does not ( no shock ) 6. If i put the function in inline <scripttags in my HTML, the JS runs fine (no syntax error).
I need a way of loading api scripts on the fly. ie. if the user clicks on a link the javascript would suck in the api script depending on what the user has selected. By api script I mean:
I am using the maps24 api to build an address finder - ie. put your postcode/zipcode in and populate the rest of the address details. For some reason you need to load a different js file for each region (north america, europe, etc). I want my users to click on their region and have the <script> tags inserted into the head. I have done this using javascript but the functions don't seem to be available. I am assuming that the page needs to refresh??
Does anyone know away of making the javascript functions available to use without having to refresh the page? In other words, loading javascript files on the fly.