Search the web
Sign In
New User? Sign Up
wdf-dom · JavaScript W3C DOM implementation in the
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 5613 - 5642 of 5642   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
5613
I have a main window and a menu window. The menu window is opened from the main window by clicking on "Open Menu". A google window can also be opened from the...
Joseph Caprario
jcaprario
Offline Send Email
Aug 30, 2007
7:39 am
5614
... Oh, the problem is that you're expecting setting an HTML attribute (you should spell that "onclick" by the way, not "onClick") to also set an event handler...
liorean
Offline Send Email
Aug 30, 2007
12:55 pm
5615
Do you mean you want an (X)HTML page that alters and saves a separate XML document? That is not currently possible with standard browser DOM. If you want to...
Devi Web Development
devi.webmaster@...
Send Email
Sep 1, 2007
10:37 am
5616
I think we need to be a bit more specific about the terminology here. Reading from an XML file and saving the XML file is not something that would be possible....
Michel Carroll
michel_carroll
Offline Send Email
Sep 1, 2007
6:02 pm
5617
That did the trick. I changed the setAttribute line to: newSpan.onclick= function() {eval(win_name+".focus()");} I'm hoping the use of eval is ok. Some people...
Joseph Caprario
jcaprario
Offline Send Email
Sep 11, 2007
9:30 am
5618
... Better way of doing it: newSpan.onclick=function(winobj){ return function(ev){ ev=ev||event; winobj.focus(); }}(winobj); This saves a reference to the...
liorean
Offline Send Email
Sep 11, 2007
10:37 am
5619
I'm working on a form validation snippet; my intention is to make it clean, and light on performance, while allowing dynamic controls in it. For that I need to...
Ariel Flesler
ari_flesler
Offline Send Email
Sep 11, 2007
2:17 pm
5620
Hi, Does there exist a web service which, given a name of DOM interface or method would return a URI (including anchor) pointing to the DOM documentation for...
Dimitry Golubovsky
golubovsky@...
Send Email
Nov 26, 2007
2:17 pm
5621
... No, but scraping the W3C specs for it shouldn't be a problem. I pesonally just keep a link to <uri:http://www.w3.org/DOM/DOMTR> at hand, and navigate from...
liorean
Offline Send Email
Nov 26, 2007
3:11 pm
5622
... This might be what you're looking for. * http://www.gotapi.com/ best, Charles...
Charles Stuart
cs@...
Send Email
Nov 26, 2007
4:47 pm
5623
Hi, I have a web page which contains some machine-generated (from Haskell for the curious) Javascript. This page displays an entry field, and each time a...
Dimitry Golubovsky
golubovsky@...
Send Email
Nov 27, 2007
3:09 pm
5624
http://www.outofhanwell.com/ieleak/index.php?title=Main_Page ... -- Moran Ben-David CTO Placebase t. 213.785.1029 moran@... http://www.placebase.com...
Moran Ben-David
moran86
Offline Send Email
Nov 27, 2007
7:39 pm
5625
Moran, ... Thanks. Unfortunately I could not run this (Drip-0.5) under Wine. But does it use Gecko engine, or MSIE's engine? -- Dimitry Golubovsky Anywhere on...
Dimitry Golubovsky
golubovsky@...
Send Email
Nov 28, 2007
3:43 am
5626
... MSIE...
Moran Ben-David
moran86
Offline Send Email
Nov 28, 2007
1:49 pm
5627
I am using IE 6.x This is the HTML code <td id="td2"> <tr id="td3"> <td id="td4"> Some Test TEXT </td> <td id="td5"><input type=checkbox...
ms_chetan
Offline Send Email
Jun 16, 2008
3:07 pm
5628
Hi, ... It's because your markup is invalid. A <tr> can NOT be the immediate child of a <td>. Usually it will be the immediate child of a <table>, but might be...
Christopher Torgalson
tombedlam
Offline Send Email
Jun 16, 2008
3:11 pm
5629
... Garbage in, garbage out -- a TD can't have a TR as a child. Using invalid markup causes all kinds of interesting problems. :-) -- Hassan Schroeder...
Hassan Schroeder
laughingandj...
Offline Send Email
Jun 16, 2008
3:19 pm
5630
You can use the IE Developer toolbar to see how IE goes mad rendering a <tr> inside a <td> On Mon, Jun 16, 2008 at 5:18 PM, Hassan Schroeder...
Mone
mone@...
Send Email
Jun 16, 2008
3:53 pm
5631
All the responses so far are correct: it's because your markup is invalid. To explain why this causes the symptoms you're seeing, you need to understand that...
Jonathan Hurshman
jhurshman
Offline Send Email
Jun 17, 2008
9:49 am
5632
Hi, all I found I can get the img element named with "image1" in a html by using "document.image1" with javascript. It's very convenient because I don't need ...
ray
hantechs@...
Send Email
Nov 7, 2008
1:18 pm
5633
... Nope. As far as I know, that is a "feature" of Internet Explorer. It's very non-standard and generally a bad idea. Ian...
Ian Petersen
ispeters@...
Send Email
Nov 7, 2008
2:22 pm
5634
... It might be non-standard, but it works in all browsers I just tested: Opera, Safari, Chrome, IE, Firefox. All on Windows BTW....
Lon Boonen
q42lon
Offline Send Email
Nov 7, 2008
3:00 pm
5635
... Oh, that's surprising. Good to know, I guess. Ian...
Ian Petersen
ispeters@...
Send Email
Nov 7, 2008
3:56 pm
5636
... It's a completely non-standard way of doing things, and is a bad idea because it's implementation-dependent. You can't complain if some new browser build...
diego nunes
troyandev
Offline Send Email
Nov 7, 2008
5:07 pm
5637
... var gbn = document.getElementsByName; var image = gbn('image1'); There's your shortened code. - Casey...
Casey
heavyccasey
Offline Send Email
Nov 7, 2008
8:41 pm
5638
There is a document.images object that has all the images on a web page. You can access images using array notation like: document.images [1], maybe the...
Chad Oakenfold
chadoakenfold@...
Send Email
Nov 7, 2008
8:42 pm
5639
It seems it also works on Firefox on Linux, as I tested. ... [Non-text portions of this message have been removed]...
ray
hantechs@...
Send Email
Nov 10, 2008
6:43 am
5640
Good trick. Thanks ... [Non-text portions of this message have been removed]...
ray
hantechs@...
Send Email
Nov 10, 2008
6:53 am
5641
Is this the standard way? ... [Non-text portions of this message have been removed]...
ray
hantechs@...
Send Email
Nov 10, 2008
7:14 am
5642
... Netscape create the DOM Level 0 standard, which has been around for as long as JavaScript. See http://www.quirksmode.org/js/dom0.html -- Paul Wilkins...
Paul Wilkins
pmw57
Offline Send Email
Nov 10, 2008
10:15 am
Messages 5613 - 5642 of 5642   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help