| Thread | Last Post | Replies |
|
| Variable Nightmares | 29 Sep 2008 21:03 GMT | 10 |
I have a script that says it gets the value of a param but not the one right next to it that is declared in exactly the same manner except by name difference. Why does jscript refuse to define one and accept the other in the event they are both called and used the same way and ...
|
| alert message before redirecting page | 27 Sep 2008 00:20 GMT | 3 |
dear sir/madam, I have given alert message and then after i redirecting page like alert('hello');
|
| Javascript and WScript | 19 Sep 2008 09:16 GMT | 2 |
I need to use WScript on an intranet based application to retrive client's username. The script is very simple which i have copied below. <script language=javascript>
|
| Newline Woes | 17 Sep 2008 22:03 GMT | 1 |
In my textbox I have FirstLine\nSecondLine\nLastLine I was my alert to show. FirstLine
|
| Parameter modification | 16 Sep 2008 22:34 GMT | 41 |
How can the value of a parameter be changed in a function such that the caller's instance is changed? In other words, I am asking how to specify a parameter for a function such that the parameter is passed by reference. In C++, we would use a pointer or a reference to do what I ...
|
| Accepting/Rejecting Track Changes Programmatically | 16 Sep 2008 00:27 GMT | 3 |
We have a bunch of Word documents that were created long time ago. One of the software that we use to translate complains about some track changes were left without accepting or rejecting. I have a script that supposely accepts all changes to the Word doc, but it does
|
| looping on window objects | 10 Sep 2008 21:49 GMT | 7 |
If you try this code: <SCRIPT> for (var o in window) document.write(o +" : " + typeof(window[o]) + "<BR>") </SCRIPT>
|
| Multilingual and JavaScript | 06 Sep 2008 02:10 GMT | 4 |
What is the best way to make multilingual web applications with JavaScript? Do you have any examples? Thank you.
|
| error on calling Activex control from js | 04 Sep 2008 10:48 GMT | 1 |
I have built ATL activex control on Vista using VS2005 VC++. I packaged all required dlls and maniefiests into cab file. I tested it on dev box (vs2005 installled) and other test Vista box (NO vs2005). It works fine on Vista. However IE is not able to create
|
| IE7 - how to close a window in script | 02 Sep 2008 09:10 GMT | 26 |
In IE 6, if one browser window opens another browser, I can use the following javascript to close the first browser window. var mainWin = window.opener; mainWin.opener = self;
|
| IE8 - jscript - layers | 01 Sep 2008 13:22 GMT | 7 |
I just updated to IE8 beta2 .I was hoping I was compatible but evidently not. I seem to be partly compatible. I use a lot of layers and javascript. When I click on a link to pop-up a layer, the 1st time, it pops up fine. But if I try to open the layer a 2nd time it doesn't work. ...
|