|
First
|
Prev |
Next
|
Last
Pages: 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703
Sortable Tables Big deal for me, maybe the rest of you too: http://javascript.internet.com/miscellaneous/sortable-table-with-alternating-row-colors.html ... 20 May 2006 23:31
how to open new window Hi! I have used JS, but I am still new to it. I have something like this: oNewWindow = new Object(); oNewWindow = open("sonnich.xls","Qopen","resizable=yes,scroll=yes, status=yes, width=320px, height=470px",true); oNewWindow.focus(); and I need to make it work so, that it always opens a new window (it ... 22 May 2006 17:21
Retrieving Cookies I have the code below that will retrieve a cookie that was placed by the server (ie: joes.com) that the document resides on. I want to be able to retrieve a cookie set by another server (ie: freds.com) but I want to retrieve it from a page served by joes.com. This code apparently using 'document.cookie' determines ... 15 May 2006 17:04
RegExp validation The following vbscript sub checks that a value has a specific format: first 3 characters are alphabetic: anything from a - z. The last 4 characters are numeric: anything from 0 - 9 Sub CheckString(val) Set VerifyValue = New RegExp VerifyValue.Pattern = "^[a-z]{3}\d{4}$" VerifyValue.Ignor... 13 May 2006 05:54
What does this means.... I saw a declaration like below and wonder what it means. Can someone please explain to me? Thanks a million. var doggy = {}; Regards, Damon ... 2 May 2006 11:13
Scoll box for pictures HI How would i make a scroll box for pictures? Thanks Chris ... 28 Apr 2006 05:36
Syntax questions Is it important to declare variables, i.e., var x = yada, or is it perfectly fine to use x = yada; without the 'var?' Is this syntax appropriate: if (x==y==2)? -- Ed Jay (remove 'M' to respond by email) ... 20 Apr 2006 07:47
hidden/visible divs okay ive been working at this for probably 4 hours now, and I (not to mention my boss) am pretty upset. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <script src="AC_Ru... 19 Apr 2006 12:58
setTimeout I am trying to discover what I am doing incorrectly here. <snippet> function not_Working(me) { //do something; setTimeout("not_Working(me)",1500);//use variable } function Working(me) { //do something; setTimeout("not_Working(3)",1500);//use constant } </snippet> Why will setTimeout n... 18 Apr 2006 17:04
IFRAME Popup Hi, I am trying to call a page on server1(development) which in turn loads a report from another server2 (rptdb) using an iframe. The report has links in it, on clicking which I am executing a window.open on an absolute url on server1(development). The problem is that the popup does not work, on IE it doe... 24 Apr 2006 13:56 |