Tagged Questions

0
votes
4answers
29 views

jQuery DOM Ready

In the following code snippet: <form> <fieldset> <button id="indexGetStarted" class="button" type="submit">Get Started!</button> </fieldset> …
0
votes
3answers
29 views

basic JavaScript issue with childNodes

Hi! I'm a JS beginner. I posted this question because I've been trying to find a solution for 2 hours (it's 3:00am and I'm dying to go to bed). So thanks for understanding. I want to get the child …
0
votes
3answers
25 views

jQuery problem with a blur event

Hello, Here's my problem: I have a div element that when it's clicked, another div shows up. Now I have no idea how to make that wherever I click on the page, this div gets removed. I mean, I know …
0
votes
4answers
46 views

Regex to find word on page including inside tags.

Thanks to Chetan Sastry I have this Regex code to parse my page for a list of words and add the TM to them. var wordList = ["jQuery UI", "jQuery", "is"]; var regExp = new RegExp("\\b" + …
0
votes
1answer
22 views

JS DOM Objects and the Style Attribute

I have two sets of code: var holder = document.createElement('div'); var a = document.createElement('div'); a.style.float = 'left'; a.style.width = '90px'; a.style.height = '90%'; a.style.border = …
0
votes
2answers
42 views

Javascript behavior on page refresh

What is the expected behavior of Javascript when you do a soft refresh on a web page? I know that when you refresh a page, most web browsers will preserve values entered into form elements on a …
0
votes
2answers
37 views

Writing to the DOM on body onload not working in Google Chrome

Hello. In Google Chrome, the following code snippet: <html xmlns = "http://www.w3.org/1999/xhtml"> <head> <title>Example</title> <script type = …
0
votes
1answer
26 views

How to check if property ‘isElementContentWhitespace’ is supported?

I want to use isElementContentWhitespace on text nodes, but not all browsers support it, so I need to check if its supported, then if is, use it, if not implement jquery's $.trim... i've tried doing …
3
votes
5answers
146 views

node selection and manipulation out of the dom (What is jQuery’s trick ?)

Hi I would like to do dom selection and manipulation out of the dom. The goal is to build my widget out of the dom and to insert it in the dom only once it is ready. My issue is that getElementById …
1
vote
2answers
27 views

How do I give an HTML canvas the keyboard focus using jquery?

I am implementing a game using Javascript, jquery, and the Canvas tag. How can I prevent the browser from processing keyboard shortcuts when the canvas tag has the focus? I have tried …
0
votes
2answers
18 views

howto append something to an empty body with jquery

I am doing this with jquery $().ready( function() { $(document).empty(); $(document).append("<div>hallo</div>"); }); I would have expect it to empty the body and afterwards add an …
1
vote
2answers
35 views

What defines the availability of the DOM `document` property in the javascript global object?

I am a bit new to javascript and was trying to understand how the W3C DOM standard and javascript as defined by ECMAscript interoperate. Specifically, as I understand it: the ECMAscript standard …
0
votes
2answers
64 views

Javascript is telling me a node has 23 children, but it only has 11 and firebug agrees with me.

Im working on a HTML test page with a simple grid that has red or blue squares. If you click a red square it should be blue, if you click a blue square it should change to red. Sounds easy. I have it …
1
vote
3answers
38 views

Hiding the text input cursor (the caret) showing through overlayed elements Internet Explorer

I have a form with a special widget that fills in a text input. When the text input has focus, the widget appears above the text input (intentionally above it) and the user clicks options in it, when …
0
votes
1answer
13 views

HTML DOM width + height of visible window

How do I get the current height and width of the available space in the browser as it is open. I don't want the height of the total document, just what's visible on the screen.

1 2 3 4 5 77 next
15 30 50 per page