We all know that global variables are anything but best practice. But there are several instances when it is difficult to code without them. What techniques do you use to avoid the use of global variables?
For example, given the following scenario, how would you not use a global variable?
JavaScript code:
var uploadCount = 0;
window.onload = function() {
var frm = document.forms[0];
frm.target = "postMe";
frm.onsubmit = function() {
startUpload();
return false;
}
}
function startUpload() {
var fil = document.getElementById("FileUpload" + uploadCount);
if (!fil || fil.value.length == 0) {
alert("Finished!");
document.forms[0].reset();
return;
}
disableAllFileInputs();
fil.disabled = false;
alert("Uploading file " + uploadCount);
document.forms[0].submit();
}
Relevant markup:
<iframe src="test.htm" name="postHere" id="postHere"
onload="uploadCount++; if(uploadCount > 1) startUpload();"></iframe>
<!-- MUST use inline JavaScript here for onload event
to fire after each form submission. -->
This code comes from a web form with multiple <input type="file">. It uploads the files one at a time to prevent huge requests. It does this by POSTing to the iframe, waiting for the response which fires the iframe onload, and then triggers the next submission.
You don’t have to answer this example specifically, I am just providing it for reference to a situation in which I am unable to think of a way to avoid global variables.
The easiest way is to wrap your code in a closure and manually expose only those variables you need globally to the global scope:
To address Crescent Fresh’s comment: in order to remove global variables from the scenario entirely, the developer would need to change a number of things assumed in the question. It would look a lot more like this:
Javascript:
HTML:
You don’t need an inline event handler on the
<iframe>, it will still fire on each load with this code.Regarding the load event
Here is a test case demonstrating that you don’t need an inline
onloadevent. This depends on referencing a file (/emptypage.php) on the same server, otherwise you should be able to just paste this into a page and run it.The alert fires every time I click the submit button in Safari, Firefox, IE 6, 7 and 8.