Tagged Questions
2
votes
5answers
140 views
When is an object in Javascript constructed?
Consider the following Javascript function (1):
function setData(domElement) {
domElement.myDataProperty = {
'suppose': 'this',
'object': 'is',
'static': 'and',
'pretty': 'big'
};
...
1
vote
2answers
709 views
Under Construction page For Website Without Redirect
I wanted to know if there is some way to change something simple, such as a htaccess file, a js file, or a php file, and then all of the webpages on my site will show an under construction page. I do ...
0
votes
2answers
68 views
Javascript string construction by concatenation?
Exploring Javascript (and coming from the Java world). I have the following line of code in a script:
if (jQuery) {
document.getElementById("BOTTOM_MID").innerHTML
= "JQuery Loaded - " ...