Quantcast
Browsing all 52 articles
Browse latest View live

Comment from Paul

theres no open brace on your first example.

View Article


Comment from Russell Bicknell

Global variables are actually the default in JavaScript. The keyword var is actually what causes the variable you are assigning to be placed in the local scope. If you want to declare a variable in the...

View Article


Comment from Jonathan Snook

@Endel, that's correct. It is not possible to directly share variables between frames from different domains. There are ways around it, such as using Flash with properly configured crossdomain.xml...

View Article

Comment from Endel

Hello there, I get stuck about sharing variables between frames from different domains. It's impossible, right?

View Article

Comment from Rakesh

Hello, I found this post usefull,.. .and then began to think how to delete the variable from the window object.. and i came across "delete" delete window.myValue; alert(window.myValue); // undefined

View Article


Comment from HH

try this(repair '['): [script type="text/javascript"> function aaa(){alert('aaa'+globvar);}//this works [/script> [script type="text/javascript"> var globvar=123; aaa(); zzz(); [/script>...

View Article

Comment from x

x

View Article

Comment from Karim

Hello Everyone, Although this is an old discussion but I would also like to ask question same as above. As if you have declared global variable and assigned it locally within a function, is it possible...

View Article


Comment from Shahzad

I am looking for a global variable that is inter-script accessible. Something like:< script language="JavaScript"> var interscriptVariable = 0;< /script>< script...

View Article


Comment from Test

text but other than thattestvoid <script language="javascript">alert('hello')</script>

View Article

Comment from Richard

Jonathan, After reading your response yesterday I broke out a Javascript book and read up on ajax. I also found an article you did on webreference.com which I found to be very helpful. I had some miss...

View Article

Comment from Jonathan Snook

@Richard: based on your description of this ActiveX object, it seems like you need the ocx to be continually loaded. Going Ajax may be fairly quick depending on how you have things structured now. For...

View Article

Comment from Richard

Jonathan - Thanks for the response! It's an AcitveX Object (.ocx) that implements a VIOP phone system on the client side so persisting the object in either cookies or at the server wont work in my...

View Article


Comment from Jonathan Snook

@Richard: that's a definite dilemma and you've got a few things you can do:Use cookies to store state from page to pagesend the state information back to the server and include it in the rendered...

View Article

Comment from Richard

Hi guys, I am an experienced developer with just a basic understanding of Javascript (enough to do client validation etc) but for the most part, most of my dev is on the server side. My question: I...

View Article


Comment from Prashant

how to access the global variables from javascript in jsp page

View Article

Comment from Roger

I admit to being a novice with JavaScript, but... so far, not a single example that I've found on Google of changing a value of a global var by means of a function has ever worked.

View Article


Comment from randomguy

Thanks, this tip helped me a lot!

View Article

Comment from Jonathan Snook

You can always contain your code down to just one global variable. In the case of this site, all my custom code is contained in the SNOOK variable.

View Article

Comment from Mr. Ignition

Global variables are hard too avoid in JavaScript. People can say they're bad and all but who here can look at the source for their site and not have any global JS variables?

View Article
Browsing all 52 articles
Browse latest View live