1
vote
2answers
27 views
Ordering of javascript execution (inline and external), IE vs. Firefox
I'm having some issues with the ordering of javascript execution in the following page:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" …
0
votes
0answers
4 views
How to update pixelPosition of a custom infoWindows on Google Maps V3 after dragging?
I'm creating a new mashup on top of Google Maps. It's simple enough that I chose to use V3 to provide longer life span.
However, there's some special needs that Google Maps infoWindow doesn't …
0
votes
4answers
31 views
access iframe with DOM
In the following code, the alert works fine and prints "DIV : IFRAME" as it should however it then says that cNs[1].childNodes[1].document has no properties.
Html:
<div id="WinContainer">
…
0
votes
3answers
44 views
document.createElement(’script’)… adding two scripts with one callback
I need to add prototype and then add scriptaculous and get a callback when they are both done loading. I am currently loading prototype like so:
var script = document.createElement("script");
…
0
votes
2answers
85 views
javascript server under XULRunner fails.
I'm trying to debug a DOM scraping packaged called crowbar. Anyhow, when I run I get:
Error: [Exception... "Component returned failure code: 0xc1f30001 (NS_ERROR_NOT_INITIALIZED) …
-1
votes
3answers
77 views
Should setting `checkbox.checked = false` not clear the HTML attribute too?
Here's my HTML:
<input id="test" type="checkbox" checked="">
Here's a Firebug excerpt:
>>> test
<input id="test" type="checkbox" checked="">
>>> test.checked = false
…
2
votes
1answer
24 views
Include XML inline in a HTML file
I'm trying to include some (effectivly) static XML data in an HTML file, and then parse it out with JavaScript. The test case below works fine in Firefox, Opera and Chrome (I get the expected list of …
0
votes
4answers
46 views
Reset style properties of an HTML element to stylesheet-defined defaults?
CSS code:
p.myparagraph {
color: yellow;
}
Assume that I've turned the color of <p> elements that use the myparagraph class to red. Is there a way to reset all style properties of …
0
votes
3answers
48 views
loop through tr’s with Jquery and compare contents with next row in series
I'm somewhat new to jQuery/javascript, and would like to compare the contents of row[i] in a table body with row[i+1].
Is this something I can do with jQuery or should I just use plain old JS and …
1
vote
3answers
48 views
The proper way to handle popup closing
I'm looking for close event for popup. I've found one for XUL, but I need it for HTML.
Popup has closed property.
>>> var popup = open('http://example.com/', 'popup', …
1
vote
3answers
50 views
How to show Page Loading image/div/text until the page has finished loading/rendering
Hiya,
I have a section on our website that loads quite slowly as it's doing some intensive calls. Any idea how i can get a div to say something similar to "loading" to show while the page prepares …
0
votes
3answers
41 views
How to move an element around DOM tree without affecting related javascript?
In this case I have a containing an iFrame that has an editor, mooEditable. I clone the element with IDs, destroy old one and insert new one where needed.
Javascript component doesn't work anymore …
0
votes
2answers
218 views
Finding number of nodes in PHP, DOM, XPath
I am loading HTML into DOM and then querying it using XPath in PHP. My current problem is how do I find out how many matches have been made, and once that is ascertained, how do I access them?
I …
0
votes
2answers
34 views
jquery: firefox cant find id tag but safari can??
this problem is so weird.
i have used jquery to link a specific id to an alert("hello").
$("#submit_reply").live("click", function() {
event.preventDefault();
alert("hellooooo");
});
now …
0
votes
2answers
38 views
How to insert a DOM node a a specific character index in an existing node (with Hpricot or a similar Ruby library)
Suppose I have this HTML:
html = <div>Four score and seven years ago</div>
What's the best way to insert (say) an anchor tag after the word "score"? Note: I want to do this in terms of …
