| Thread | Last Post | Replies |
|
| Mouse Over & Refresh of images ? | 28 Feb 2005 23:36 GMT | 3 |
i have a page that refreshes every minute. i would like to cancel the refresh when the mouse is over my image and refresh the page when the mouse moves out of the image. is this possible ? if so, how
|
| Frame handling | 28 Feb 2005 23:35 GMT | 5 |
I'm looking for tutorials or articles considering HTML Frames and how to handle them with Javascript. E.g. samples how Frames can exchange information, can a Frame instruct other Frame to update it's content etc.
|
| What wrong with the code | 28 Feb 2005 21:44 GMT | 3 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <body>
|
| countdown starts to count up after zero | 28 Feb 2005 20:59 GMT | 8 |
I have this script that works the way I want except for one thing... Once it hits zero it starts to count up and looks like this: -1:0-1:0-1:0-18 with the last number counting up. Can anyone help me find a way to stop it at zero?
|
| How to dynamically assign event handler functs w/ parameters? | 28 Feb 2005 20:50 GMT | 3 |
How do you dynamically assign a function to an element's event with specific parameters? I know that the code is different for MSIE and Mozilla, and need to know how to do this for both.
|
| process XMLHTTP response returning poorly formed html | 28 Feb 2005 15:55 GMT | 5 |
Using xmlhttp I am accessing a document from the web that is not xml and is in fact not even proper html even though it is supposed to be (unbalanced tags). Here is the type of code I am using: url="http://www.domain.com/page.html";
|
| Find the client browser ip-adress | 28 Feb 2005 14:46 GMT | 1 |
Is it possible to get a client browser ip-adress when it access my webpage? If the client is behind a network from a company can I get the ipadress gateway where the client is behind or is it i only possible to get the client ipadress?
|
| window.location.href | 28 Feb 2005 09:25 GMT | 1 |
<script language="javascript"> function ConfirmPage() { window.location.href="http://ConfirmationPage.htm"; return false;
|
| Equivalent to display:none for <option> in IE? | 28 Feb 2005 06:59 GMT | 3 |
I've been using display:none on the style property of some <option> elements in my forms, which works fine with Mozilla - as expected it removes the option from my dropdown (although it still exists in the code). Is there an equivalent in IE?
|
| Remove space between hidden DIVs in Internet Explorer | 28 Feb 2005 06:35 GMT | 1 |
I want to use JavaScript when a button is clicked to show and hide a SPAN or DIV. This works in both IE and Netscape, but what I'd like to happen is for there to be no white space where the hidden div is. I start with two visible divs and in between them are two more hidden
|
| Getting a variable reference, or accessing call objects? | 28 Feb 2005 00:12 GMT | 2 |
Does anyone know.... In JavaScript, is there any way to get a reference to a string variable (not an object), like Perl's "\" operator? I want to be able to compare two such references and know if they point to the same string variable.
|
| Obtaining window height and width | 27 Feb 2005 22:45 GMT | 3 |
OK, I know that for many browsers, window height and width can be obtained from: window.outerHeight and window.innerHeight window.outerWidth and window.innerWidth
|
| Function return function??? | 27 Feb 2005 22:25 GMT | 17 |
function F(e) { return function(){P(e)}
|
| body onunload for external links only | 27 Feb 2005 22:00 GMT | 10 |
does anyone have sample code to display a pop up when a user leaves the site? I really don't want to use this technique, but the clients demand it. I'm thinking something like un body onunload, catch the URL they're
|
| Prevent a javascript function from executing twice | 27 Feb 2005 20:17 GMT | 1 |
I have a select dropdown and 5 text fields. based on the option selected (which are the units - cm/mm/inches/ft/yard etc), i change the values in the text fields using javascript to the corresponding units.
|