| Thread | Last Post | Replies |
|
| Scrolling multiple-select, IE vs Firefox | 01 May 2006 00:19 GMT | 4 |
Why does this code work in IE and Firefox and the second example does not work in IE. While these are just sample scripts, my actual scripts will be transferring options from one multi-select list to another. I want the most recently added one to scroll into view.
|
| dd/mm/yyyy Date Compare Problem | 30 Apr 2006 22:43 GMT | 12 |
I have a working script that converts a dd/mm/yyyy text box date entry to yyyy/mm/dd and compares it to the current date, giving an error through an asp.net custom validator, it is as follows: function doDateCheckNow(source, args)
|
| Problem with window.open | 30 Apr 2006 22:20 GMT | 18 |
I am trying to pop-up a window when the user clicks on an image. The problem is that when the user clicks on the image and the window pops up OK, but the window underneath also proceeds to the image. The desired behavior is that when the pop-up is invoked, I want the
|
| Variables and Object creation using prototypes | 30 Apr 2006 22:08 GMT | 6 |
Try to guess what happens if I run the following code in any modern browser. Don't cheat! Guess before you try it out. Will I get: 1) 1,2...a,b
|
| Return index in 1 of 2 arrays if match is found | 30 Apr 2006 09:30 GMT | 2 |
I'd like to return a match and its index number in one of two arrays that matches the filename within: var menuURLs = new Array ("dinner.html",
|
| Simple image swap not working...Why? | 30 Apr 2006 06:38 GMT | 6 |
Why doesn't the following swap images? <head> <javascript type="text/javascript"> function swapImage() {document.images.image1.src=/images/1stimage.gif;}
|
| Creating a new Explorer Window by passing HTML | 30 Apr 2006 06:24 GMT | 4 |
I currently have this code: <script language="javascript"> function init() {
|
| Should UA string spoofing be treated as a trademark violation? | 30 Apr 2006 05:27 GMT | 79 |
I wandering about the common proctice of some UA's producers to spoof the UA string to pretend to be another browser (most often IE). Shouldn't it be considered as a trademark violation of the relevant name owner? If I make a whisky and call it "Jack Daniels", I most
|
| window.focus() -- unusual problem... | 30 Apr 2006 01:52 GMT | 3 |
this is for a browser window that contains a chat app that is an applet... when browser window is not in focus I would like users to somehow get notified when a message arrives, more or less like regular IM apps do.. I did with window.focus(), but I don't really want window
|
| Some help with scrollTo please? | 30 Apr 2006 01:21 GMT | 5 |
Hi all. First of all I know pretty much nothing about Javascript :) It's just that I found a program/script that will refresh a webpage (not mine) every so often. It's called AllStock's AutoRefresh. What I am hoping some can help me with is for when it refreshes I would like
|
| Transfer javascript code from iFrame to a DIV | 29 Apr 2006 20:02 GMT | 4 |
I have HTML form whose target is an invisible IFrame. After the IFrame is loaded completely, following code transfers contents of IFrame to DIV document.getElementById("mainDiv").innerHTML =
|
| Create DOM object holding an external page | 29 Apr 2006 12:59 GMT | 2 |
Is there a way to create a DOM document object to hold the contents of an external html? I have two pages: content.html contains some content.
|
| Change the same span element all the time | 29 Apr 2006 12:54 GMT | 7 |
I'd really appreciate any help. Im trying to change a label over and over again. I can change it the first time, by using the following code, however it never works again, how can i do this so it uses the same element name? This is driving me insane. On the second call to var
|
| Is it possible to get document size? | 29 Apr 2006 10:32 GMT | 4 |
Is it possible to get the actual document size? Not the window size, but the actual rendered document size, which in my case is bigger than the window. I am trying to set up a form entry system where the user scrolls by the
|
| setAttribute versus assigning a property | 29 Apr 2006 09:22 GMT | 4 |
Suppose I have a DOM element, say a td, and I want to add a value to it to be used later. I am unclear on when it's OK to do td.myAttr = "hello"; versus when I need to do
|