| Thread | Last Post | Replies |
|
| Could this script be modified to show the date as well as the time? | 30 Jun 2005 20:16 GMT | 3 |
Could this script be modified to show the date as well as the time? <script> function liveclock(){ var curdate=new Date()
|
| JScript GetObject() vs. VBScript GetObject() vs. W2000 vs W3000 server | 30 Jun 2005 16:29 GMT | 1 |
So, I have this VBScript logon script that works fine on a W2k, W3K, XP, etc. I translated this script to JScript and it works fine on W2k and XP. However, it does not work on W3K. The place where it breaks is this piece of JScript code:
|
| Popup Validation | 30 Jun 2005 08:16 GMT | 1 |
Have a form tag with an onSubmit event that calls a popup. The popup does a spell check on a field on the main page. When the spell checking is completed, I want to submit the page to another form. The problem is, if I have the popup submit the form, it's calling itself again ...
|
| What does this do? | 29 Jun 2005 19:21 GMT | 7 |
what does this do? is this regex? function encodestring(s) { return s.toString().replace(/\%/g, "%26").replace(/=/g, "%3D");
|
| JS for generating Email | 29 Jun 2005 07:37 GMT | 4 |
I have this function: function mailThisUrl() { subj = "I thought this might interest you...";
|
| Preparing a page for random photo display | 29 Jun 2005 05:20 GMT | 1 |
I have a number of folders that I would like to create a page for to display the photos in groups of 8 and then allow the user to page thru the thumbnails. The number of files in the different folders can change which is why I want to make this dymanic. The server is hosted and ...
|
| Iframe loading interrupted by user action. | 28 Jun 2005 23:22 GMT | 5 |
I've got a page that loads about 5 iframes. Theres some custom tab-like navigation on the page that shows only one of those IFrames at a time. If I choose a 'tab' before all of the iframes load in completely, then
|
| How to acces COM array (SAFEARRAY/VARIANT) in jScript/Javascript | 27 Jun 2005 09:25 GMT | 1 |
I am looking for a way to access the array(VARIANT/SAFEARRAY) returned from a COM interface method in JScript/JavaScript. Any example with code will be of great help. Thanks.
|
| DACL's and Jscript | 26 Jun 2005 16:39 GMT | 2 |
I am attempting to convert a MS VBS example from: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/script56/html/w swlkwshwalkthrough.asp into a jscript file... I have converted several in the past, however this one is giving me some headaches... I get exceptions and ...
|
| Calling a COM method with NULL input from script | 24 Jun 2005 21:03 GMT | 2 |
I have a COM object with a method that takes an object as an input parameter. The COM object's implementation allows for this parameter to be NULL, and implements special behavior in this case. When I try calling this method from JScript / JavaScript using a null value
|
| creating a SQL SELECT statement in javascript (problem with quotes | 24 Jun 2005 14:30 GMT | 1 |
Hi; I'm creating some javascript code in frontpage so that I can retrieve some info from an MS Access database. The database has three fields: username, password and stylesheet. I'm trying to retrieve the stylesheet value by
|
| onload redirect fails on Windows Server 2003 | 23 Jun 2005 17:41 GMT | 6 |
I have a page that looks like the following (simplified): <HTML> <HEAD></HEAD> <BODY onLoad="javascript:document.frmSub.submit();">
|
| Easy question. how do we use the THEN statement depending on two vars. | 22 Jun 2005 12:56 GMT | 8 |
HI! I am a beginner at this so here we go. I want to know how to check to see if two vars have a certain condition then I will give an alert. Example---
|
| How to find out the virtual src of an IMG? | 22 Jun 2005 12:52 GMT | 14 |
There're elements like <IMG src="../pic.jpg" alt="*"> in my HTML document. If I use getAttribute("src") method or query the src property against that IMG element, the returned attribute value is converted to an actual value, such as
|
| javascript table problem, please help | 21 Jun 2005 18:07 GMT | 3 |
I tried to create a dynamic table like this: var lastRow = menu1.rows.length; // if there's no header row in the table, then iteration = lastRow + 1 var iteration = lastRow;
|