185
votes
11answers
77k views

How to debug Javascript/jQuery event bindings with FireBug (or similar tool)

I need to debug a web application that uses jQuery to do some fairly complex and messy DOM manipulation. At one point, some of the events that were bound to particular elements, are not fired and ...
177
votes
8answers
159k 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 = ...
96
votes
12answers
210k views

Check if option is selected with jQuery, if not select a default

Using jQuery, how do you check if there is an option selected in a select menu, and if not, assign one of the options as selected. (The select is generated with a maze of PHP functions in an app I ...
77
votes
9answers
63k 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: ...
70
votes
8answers
24k views

How do I select text nodes with jQuery?

I would like to get all descendant text nodes of an element, as a jQuery collection. What is the best way to do that?
55
votes
8answers
81k views

count immediate child div elements using jQuery

I have the following HTML node structure: <div id="foo"> <div id="bar"></div> <div id="baz"> <div id="biz"> </div> <span><span> ...
49
votes
10answers
72k views

How to check null objects in jQuery

I am using jQuery, and I want to check the existence of an element in my page. I have written following code, but it's not working: if ($("#btext" + i) != null){ //alert($("#btext" + ...
32
votes
3answers
38k views

How may I sort a list alphabetically using jQuery?

I'm a bit out of my depth here and I'm hoping this is actually possible. I'd like to be able to call a function that would sort all the items in my list alphabetically. I've been looking through the ...
31
votes
5answers
59k views

Rotating a Div Element in jQuery

Trying to rotate a div element...This might be DOM blasphemy, could it work possibly with a canvas element? I'm not sure - if anybody has any ideas of how this could work or why it doesn't, I'd love ...
29
votes
4answers
491 views

Is Javascript/jQuery DOM creation safe until it's added to the document?

Please read this statement carefully: let's assume before ANY elements are added to the document all unsafe elements in $dom have been removed. But they were initially created. Ok let's continue.... ...
28
votes
3answers
7k views

jQuery get DOM node? [closed]

Possible Duplicate: How to get a DOM Element from a JQuery Selector I can select a node using jQuery with something like $('#element_id') but how would I get the DOM element for use with ...
28
votes
4answers
69k 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 ...
26
votes
5answers
13k views

How to remove all css classess using jquery?

Instead of individually calling $("#item").removeClass() for every single class an element might have, is there a single function which can be called which removes all css classes from the given ...
24
votes
8answers
22k views

Detect element content changes with jQuery

change() function works and detects changes on form elements, but is there a way of detecting when a DOM element's content was changed? This is does not, unless #content is a form element ...
24
votes
5answers
18k views

jQuery event for images loaded

Is it possible to detect when all images are loaded via a jQuery event? Ideally, there should be a $(document).idle(function() { } or $(document).contentLoaded(function() { } But I can't find ...
23
votes
2answers
8k views

jQuery find events handlers registered with an object

I need to find which event handlers are registered over an object. For example: $("#el").click(function() {...}); $("#el").mouseover(function() {...}); $("#el") has click and mouseover registered. ...
22
votes
5answers
21k views

How to create a DOM node as an object?

I would like to create a DOM node, set the 'id' attribute and then append it to 'body'. The following seems not to work because jQuery doesn't see my template as an object: var template = ...
21
votes
5answers
383 views

Best practice for using DOM Level 0 in modern JavaScript applications

Is there an agreed set of "best practices" for use of the DOM Level 0 collections in modern JavaScript applications? (document.forms, document.images, etc.) In applications using jQuery, I've noticed ...
19
votes
5answers
39k views

Finding the id of a parent div using Jquery

I have some html like this: <div id="1"> <p> Volume = <input type="text" /> <button rel="3.93e-6" class="1" type="button">Check answer</button> ...
18
votes
2answers
18k views

How to destroy a DOM element with jQuery?

Suppose the jQuery object is $target.
17
votes
4answers
12k views

Is it possible to use jQuery to read meta tags

Is it possible to use jQuery to read meta tags. If so do you know what the basic structure of the code will be, or have links to any tutorials.
17
votes
8answers
2k views

jQuery: How to select “from here until the next H2”?

I'm setting up a very straightforward FAQ page with jQuery. Like so: <h2>What happens when you click on this question?</h2> <p>This answer will appear!</p> This is all ...
16
votes
4answers
6k views

How to stop event bubbling with jquery live?

I am trying to stop some events but stopPropagation does not work with "live" so I am not sure what to do. I found this on their site. Live events do not bubble in the traditional manner and ...
16
votes
2answers
6k views

How to select html nodes by ID with jquery when the id contains a dot?

If my html looked like this: <td class="controlCell"> <input class="inputText" id="SearchBag.CompanyName" name="SearchBag.CompanyName" type="text" value="" /> </td> How could I ...
16
votes
2answers
10k views

ASP.NET MVC AJAX with jQuery

I have a site where each user's page shows comments and allows other user's to add comments. I want to have it so the add comments form is on the page and when a user adds a comment, it is added to ...
15
votes
4answers
17k views

JQuery delete DOM element after fading out

I want to delete an DOM element right after fading out. What I did so far is $(element).click(function() { $(this).fadeOut(500, function() { $().remove(this); }); }); But now I always get this ...
14
votes
3answers
228 views

How to read a browser's unsupported CSS properties?

Quite by accident today, I discovered that in IE6, IE7 and IE8 it is possible to read unsupported CSS properties using the .css() method of jQuery: jQuery(node).css('transition'); // Returns the ...
14
votes
6answers
3k views

jQuery - Trigger event when an element is removed from the DOM

I'm trying to figure out how to execute some js code when an element is removed from the page: jQuery('#some-element').remove(); // remove some element from the page /* need to figure out how to ...
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 ...
13
votes
4answers
730 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
4answers
276 views

How can I Observe the contents of an 'a' tag - jquery

I have a blank <a> tag that content is loaded into via an external piece of javascript. I want to observe the <a> and when its content changes perform another task. The content will only ...
13
votes
3answers
6k views

JavaScript: DOM load events, execution sequence, and $(document).ready()

I just realized that I lack the fundamental knowledge of what exactly happens as a page is being loaded into a browser. Assume I have a structure like this: <head> <script src="jquery.js" ...
13
votes
5answers
16k views

Adding options to a select using Jquery/javascript

What's the easiest way to add an option to a dropdown using javascript? Can this work? $("#mySelect").append('<option value=1>My option</option>');
12
votes
3answers
423 views

DOM Mutation event in JQuery or vanilla Javascript

Are there any DOM mutation events in JQuery or in vanilla Javascript that fire cross browser? To clarify, say I have a script on my page which inserts a div into the body. I don't have access to the ...
12
votes
2answers
202 views

jQuery leaks solved, but why?

I am working on a large enterprise application with a LOT of JavaScript. Enough that I can't possibly go through and fix all the small circular references that have been created over its past 5 years ...
12
votes
5answers
387 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
2answers
130 views

Can you detect when a dom node's style is set to 'auto'?

With the example CSS: .thing { height: auto } and HTML: <div class="thing">The quick brown fox jumps over a lazy dog.</div> is it possible to detect that the height of .thing is set ...
12
votes
3answers
18k views

Convert String to XML Document in JavaScript

Saw this example on the jQuery examples page for Ajax: var xmlDocument = [create xml document]; $.ajax({ url: "page.php", processData: false, data: xmlDocument, success: someFunction ...
12
votes
3answers
25k 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
11
votes
1answer
559 views

Can IE manipulate XML using jQuery?

What I am not trying to do: Simply "read" XML in IE using jQuery. Been there, done that. Works for the most part. Load XML via AJAX. This is a legacy system using XML in a hidden field (oh yah, ...
11
votes
2answers
3k views

Screen Coordinates of a element, via Javascript

I'm trying to get the screen coordinates (that is, relative to the top left corner of the screen) of an element in a browser window. It's easy to get the size and position of the window (screenX, ...
11
votes
1answer
3k views

create JQuery object by passing DOM object?

So, let say I have this: var d = document.createElement('div'); d.id = "whatever";` So, d is the DOM object, how can I create or convert it into jQuery object? e.g. $(d) ??? and, how to 'read' ...
11
votes
7answers
7k views

JavaScript moving element in the DOM

Let's say I have three <div> elements on a page. How can I swap positions of the first and third <div>? jQuery is fine.
11
votes
4answers
25k views

JQuery methods and DOM properties

I am confused as to when I can use the DOM properties and when I could use the Jquery methods on a Jquery object. Say, I use a selector var $elemSel = $('#myDiv').find('[id *= \'select\']') At ...
11
votes
13answers
18k views

How to show a spinner while loading an image via JavaScript

I'm currently working on a web application which has a page which displays a single chart (a .png image). On another part of this page there are a set of links which, when clicked, the entire page ...
10
votes
3answers
365 views

Detect if a jQuery object is on the page or not

Given a jQuery object, $j, I need to know if it represents something that is already on the page or if it is something that has not yet been put on the page. For example, if I have this: $j = ...
10
votes
3answers
599 views

Should you add HTML to the DOM using innerHTML or by creating new elements one by one?

There are two methods to add HTML-code to the DOM and I don't know what is the best way to do it. First method The first way is the easy one, I could simply add HTML-code (with jQuery) using ...
10
votes
5answers
4k views

Iterating over element attributes with jQuery

I know individual attributes can be retrieved with the attr() method, but I'm trying to iterate over all of the attributes for an element. For context, I'm using jQuery on some XML... <items> ...
10
votes
3answers
8k views

Check if an image is loaded (no errors) in JavaScript

I'm using JavaScript with the jQuery library to manipulate image thumbnails contained in a unordered list. When the image is loaded it does one thing, when an error occurs it does something else. I'm ...
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 ...

1 2 3 4 5 39