Tagged Questions

191
votes
9answers
19k views

Why don't self-closing script tags work?

What is the reason browsers do not correctly recognize: <script src="foobar.js" /> // self-closing script tag Only this is recognized: <script src="foobar.js"></script> Is it ...
176
votes
8answers
158k views

jQuery document.createElement equivalent?

I'm refactoring some old JavaScript code and there's a lot of DOM manipulation going on. var d = document; var odv = d.createElement("div"); odv.style.display = "none"; this.OuterDiv = odv; var t = ...
77
votes
9answers
62k views

What is the most efficient way to create HTML elements using jQuery?

Recently I've been doing a lot of modal window pop ups and what not, for which I used jQuery. The method that I used to create the new elements on the page has overwhelmingly been along the lines of: ...
46
votes
9answers
50k views

Dynamically retrieve Html element (X,Y) position with JavaScript

I want to know how to get X and Y postion of HTML elements such as img, div in JavaScript. thanks
28
votes
4answers
68k views

How can I get an element by name with jquery?

I have a table column I am trying to expand and hide. jQuery seems to hide the column when I select it by class but not by element name. Why does $(".bold").hide(); <--This works ...
27
votes
5answers
7k views

How to tell if a DOM element is visible in the current viewport?

Is there an efficient way to tell if a DOM element (in an HTML document) is currently visible (appears in the viewport)? (The question regards Firefox)
20
votes
5answers
903 views

Can I load an entire HTML document into a document fragment in Internet Explorer?

Here's something I've been having a little bit of difficulty with. I have a local client-side script that needs to allow a user to fetch a remote web page and search that resulting page for forms. ...
19
votes
11answers
1k views

Clear form button in HTML…do we really need this?

I usually add the clear form button to HTML forms by default, but tonight I had what alcholics call a "moment of clarity". Why the hell do we add this? In all my years of using the internet I have ...
19
votes
9answers
21k views

How can I scale the content of an iframe?

How can I scale the content of an iframe (in my example it is an HTML page, and is not a popup) in a page of my web site? For example, I want to display the content that appears in the iframe at 80% ...
18
votes
5answers
3k views

What characters are allowed in DOM IDs? [closed]

Possible Duplicate: What are valid values for the id attribute in HTML? Underscores seem fine. What about dashes? Other special characters?
14
votes
4answers
7k views

How can I simulate a click to an anchor tag?

I know this is similar to this question and this question, but given solutions didn't address the "target" property. I want to simulate a click to an anchor tag with all extras like correct target ...
14
votes
5answers
10k views

jQuery html() in Firefox (uses .innerHTML) ignores DOM changes

I'm really suprised I haven't run into this problem before, but it seems that calling jQueries .html() function on an element ignores changes in the DOM, i.e it returns the HTML in the original ...
14
votes
6answers
6k views

Screen Scraping from a web page with a lot of Javascript

I have been asked to write an app which screen scrapes info from an intranet web page and presents the certain info from it in a nice easy to view format. The web page is a real mess and requires the ...
14
votes
5answers
7k views

How can I count text lines inside an DOM element? Can I?

I'm wondering if there's a way to count lines inside a div for example. Say we have a div like so: <div id="content">hello how are you?</div> Depending on many factors, the div can have ...
14
votes
5answers
23k views

How to stop event propagation with inline onclick attribute?

Consider the following: <div onclick="alert('you clicked the header')" class="header"> <span onclick="alert('you clicked inside the header');">something inside the header</span> ...
14
votes
11answers
51k views

Replace text inside a DIV element

I need to set the text within a DIV element dynamically. What is the best, browser safe approach? I have prototypejs and scriptaculous available. <div id="panel"> <div ...
13
votes
4answers
723 views

Is there a DOM event that fires when an HTML select element is closed?

I'm looking for a DOM event that I can listen to with JavaScript for when a select element that has been opened (but no options changed) is then closed by clicking off the select element, somewhere ...
13
votes
5answers
943 views

Why does firebug add <tbody> to <table>?

I viewed the html source code, there is no <tbody>, but when viewed via firebug in the HTML tab, <tbody> appears. Any idea why?
12
votes
5answers
382 views

What happens when you have two jQuery $(document).ready calls in two JavaScript files used on the same HTML page?

I have a question on jQuery $(document).ready Let's say we have a HTML page which includes 2 JavaScript files <script language="javascript" src="script1.js" ></script> <script ...
12
votes
6answers
5k views

HTML/XML Parser for Java

What HTML parsers have the following features: Fast Thread-safe Reliable and bug-free Parses HTML and XML Handles erroneous HTML Has a DOM implementation Supports HTML4, JavaScript, and CSS tags ...
12
votes
2answers
7k views

Get element at specified position - JavaScript

Using Javascript how can I identify the element at a given position? Basically I'm looking to write a function that takes two input parameters (the x and y coordinates) and returns the html element at ...
12
votes
3answers
24k views

change html text from link with jquery

a simple question here Is there a way to change the text "click here" <a id="a_tbnotesverbergen" href="#nothing">click here</a> in this link Richard
12
votes
2answers
12k views

Reset an input control's border color (HTML/Javascript)

Does anyone know how to reset the border color of an input control once you have modified it using javascript? Useful for validation by highlighting fields that have incorrect or invalid data in them ...
11
votes
3answers
3k views

How to convert a DOM node list to an array in Javascript?

I have a Javascript function that accepts a list of HTML nodes, but it expects a Javascript array (it runs some Array methods on that) and I want to feed it the output of Document.getElementsByTagName ...
11
votes
4answers
8k views

Changing CSS Values with Javascript

It's easy to set inline CSS values with javascript. If I want to change the width and I have html like this: <div style="width: 10px"></div> All I need to do is: ...
10
votes
6answers
263 views

How do browsers resolve conflicting classes?

I know it's possible to specify multiple classes on an element in HTML: <div class='one two'>Text</div> It seems like classes are accessible from Javascript as a single string. What ...
10
votes
2answers
414 views

Touch events are not triggered on video tags on safari for iPhone

I want to prevent the scrolling on a safari web page for iphone by binding the preventDefault method on the document element of the DOM, and it works on every elements but the video tag. ...
10
votes
4answers
13k views

jQuery: Move Table Row?

Say I had to links with up/down arrows for moving a table row up or down in order. What would be the most straightforward way to move that row up or down one position (using jQuery)? There doesn't ...
10
votes
6answers
2k views

How to eliminate post-render “flicker”?

I've tried my best to be a purist with my usage of Javascript/Ajax techniques, ensuring that all Ajax-y behavior is an enhancement of base functionality, while the site is also fully functional when ...
9
votes
6answers
210 views

Can I rely on the implicit creation of the `tbody` tag?

<!DOCTYPE HTML> <html> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <script ...
9
votes
3answers
162 views

My images are loading too late, why?

I have a few js and css files that loads on the head. After the last js file there is a gap (on Firefox) of 1311ms until the browser starts to load the images. Firebug doesn't show any status on ...
9
votes
2answers
147 views

Javascript window object

In Javascript, let's say we have a main page (main.html) which contains an <iframe> (iframe.html) Now inside this iframe.html, if we need to refer to something on the main page (main.html) , ...
9
votes
2answers
7k views

How to write onshow event using javascript/jquery?

I have an anchor tag on my page, i want an event attached to it, which will fire when the display of this element change. How can i write this event? and catch whenever the display of this element ...
9
votes
3answers
3k views

Pass mouse events through absolutely-positioned element

I'm attempting to capture mouse events on an element with another absolutely-positioned element on top of it. Right now, events on the absolutely-positioned element hit it and bubble up to its parent, ...
9
votes
6answers
10k views

submit is not a function in javascript

Does anyone can tell me what is going wrong with this code? I tried to submit a form with javascript, but error ".submit is not a function" shown. See below for more details of the code: <form ...
9
votes
4answers
3k views

Does the onchange event propagate?

I'm using event delegation to listen for events lower in the DOM, but it's not working for an onchange event on a select box. Does the onchange event propagate or bubble up the DOM? Googling has ...
9
votes
17answers
2k views

Suggestions on how build an HTML Diff tool?

In this post I asked if there were any tools that compare the structure (not actual content) of 2 HTML pages. I ask because I receive HTML templates from our designers, and frequently miss minor ...
9
votes
7answers
15k views

How do I remove a child node in HTML using JavaScript?

Is there some function like: document.getElementById("FirstDiv").clear() ?
8
votes
2answers
169 views

Can javascript select object not displayed on DOM?

This is a really quick question :) Just wondering here if its possible for javascript to select objects which aren't part of the DOM... like selecting an :after or :before content created by CSS? ...
8
votes
4answers
272 views

jQuerys $.data() vs. DOM Object property

I recently needed to append some data to dynamically created LI elements. In my first instance, I used .data() in a way like var _newli = $('<li>foobar</li>'); _newli.data('base', ...
8
votes
5answers
2k views

Best Practice: Access form elements by HTML id or name attribute?

As any seasoned JavaScript developer knows, there are many (too many) ways to do the same thing. For example, say you have a text field as follows: <form name="myForm"> <input ...
8
votes
1answer
219 views

Is there a “texbox content changed” DOM event?

Every time I need to write a piece of JavaScript which monitors an input box, I usually end up doing something like: $("#field").keyup(myHandler).keydown(myHandler).change(myHandler); It’s not ...
8
votes
5answers
9k views

How to show Page Loading image/div/text until the page has finished loading/rendering

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 itself ...
8
votes
7answers
6k views

HTML “overlay” which allows clicks to fall through to elements behind it

I'm trying to overlay a element on top of a webpage (to draw arbitrary graphics), and I've come to the point where I can stack it inside of a element on top of everything, but this prevents the user ...
8
votes
5answers
7k views

Can scripts be inserted with innerHTML?

I tried to load some scripts into a page using innerHTML with a div. It appears that the script loads into the dom, but it is never executed (at least in ff and chrome). Is there a way to have scripts ...
8
votes
2answers
5k views

Does HTML Hidden control have any events? Like onchange or something?

Can I attach any event handlers to HTML hidden? Basically want to run a function with a hiiden control value changes. Thanks All, ~ck in San Diego
8
votes
2answers
5k views

.NET HTML DOM Parser?

Does anybody know of a freely available .NET HTML DOM Parser?
8
votes
1answer
2k views

Code to make a DHTMLEd control replace straight quotes with curly quotes

I've got an old, legacy VB6 application that uses the DHTML editing control as an HTML editor. The Microsoft DHTML editing control, a.k.a. DHTMLEd, is probably nothing more than an IE control using ...
8
votes
4answers
3k views

DOM manipulation in PHP

I am looking for good methods of manipulating HTML in PHP. For example, the problem I'm currently have is dealing with malformed html. I am getting input that looks something like this: ...
7
votes
1answer
81 views

How to check if a DOM Node is the node representing the doctype declaration?

So let's say (in IE8) that we have a document. Now normally we can assume that document.childNodes[0] is the doctype. So var doctype = document.childNodes[0] Now how do we confirm rather then ...

1 2 3 4 5 31