Tagged Questions

The process of changing the Document Object Model (DOM). It includes adding, removing or changing DOM elements.

learn more… | top users | synonyms

17
votes
7answers
18k views

clear all divs' contents inside a div

I have a div <div id="masterdiv"> in which i will have several child divs. For example: <div id="masterdiv"> <div id="childdiv1" /> <div id="childdiv2" /> ...
13
votes
4answers
275 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 ...
7
votes
3answers
69 views

Changing HTML depending on where I click with javascript/JQuery

In an html page you might have some code with two paragraphs like this: <hr /> <p>The first paragraph</p> <p>The second paragraph</p> <hr /> and very simply, ...
6
votes
2answers
509 views

Remove element with jQuery but leave text

I've got some html that looks like this: <div> <span class="red">red text</span> some more text <span class="blue">blue text</span> </div> What I want to do ...
5
votes
2answers
155 views

Performance for appending large element/datasets to the dom

I am appending large amounts of table row elements at a time and experiencing some major bottlenecks. At the moment I am using jQuery, but i'm open to a javascript based solution if it gets the job ...
5
votes
1answer
159 views

Is there an object in C# that allows for easy management of HTML DOM?

If I have a string that contains the html from a page I just got returned from an HTTP Post, how can I turn that into something that will let me easily traverse the DOM? I figured HtmlDocument object ...
4
votes
2answers
74 views

Rotating images based on CSS nth-child

I was able to write a JavaScript carousel and thought it might be more compact to use CSS transitions with nth-child selectors like this: img { transition: all 1s linear; /* or corresponding ...
4
votes
3answers
66 views

Randomize order of <a> links on page using jQuery

I have a list of links sitting inside a tag right now. I would like for the page to 'reorganize' the order of each link on page reload (page view) and display the results. For example: <div ...
3
votes
3answers
99 views

jQuery to Conventional Javascript mapping

I would just like a mapping of some of the jQuery methods to their normal Javascript DOM methods; e.g. prev() next() before() after() It would be really great if you could provide mapping of ...
3
votes
5answers
104 views

How to prepend text (not HTML) in jQuery?

I realise that I can prepend stuff to an element using: $(...).prepend(myText); However, if myText is, let’s say, "<span>", I actually want that text to appear, but .prepend() would instead ...
3
votes
3answers
163 views

jQuery - inserted anchor tags do not wrap correctly

I have the following snippet of jQuery: $(elementId).prevAll().appendTo(prevDiv); It works but the problem is that all the elements selected by the prevAll() function are appended to the prevDiv ...
3
votes
2answers
86 views

jquery anchoring content to certain point

I have a a list of links on my website, that when then user clicks on one then I display a toolip with some futher options, the links are display as 90x60 image, I am wanting the tooltip that is ...
3
votes
2answers
79 views

Faster to manipulate existing HTML or removing the HTML and then recreating it?

This project I am working on, I have a list of elements and convert them into a "graph" (not a true graph, but you can call it a psuedo one). I have my data set, i run a for loop over the data and ...
3
votes
1answer
355 views

Can you safely manipulate the DOM with Sharepoint (MOSS 2007)and jQuery?

We have a MOSS 2007 installation where we rely on jQuery to handle automatic rotation of tabs in webparts, animation of sliding menus and tool panels. Intermittently we get the "Operation Aborted" ...
3
votes
1answer
2k views

Building a web crawler - using Webkit packages

I'm trying to build a web crawler. I need 2 things: Convert the HTML into a DOM object. Execute existing Javascripts on demand. The result I expect is a DOM Object, where the Javascript that executes ...
2
votes
1answer
48 views

jQuery DOM manipulation memory leak in IE

We found a serious memory leak on IE when doing DOM manipulation. Basically, we were doing this: function updateTable(){ $.get('table.jsp', {}, function(data){ ...
2
votes
2answers
28 views

How to change the position of multiple instances of selected elements

I need to move the each of the h3 elements from their position below to a new position as first child of .summary-inside-wrapper Everything I have tried moves an instance of ALL the h3 elements into ...
2
votes
2answers
57 views

How to get live selector results in a jQuery bind?

I'm working on a bit of code for a project at work, and am kind of stumped on a nuance of jQuery. In the following code, It should look down my list and iterate each text input element with the same ...
2
votes
3answers
68 views

How to load plain text in to div from another page

I'm trying to load content from another page div into another page div. What i've got: JQUERY: $('#news_date-1').load('test.php .news_date-1'); TEST.PHP <div ...
2
votes
2answers
337 views

Add line breaks or spaces between elements when using jQuery .append()

I have a jQuery set of elements that I get from my DOM by calling: $(".some-selector"); All my elements are DIVs each in its own line. My DIVs are set CSS (among other things) display: ...
2
votes
1answer
47 views

Is there any way to fix/remodel this jQuery script so that it can consume less memory and go faster? (I'm using 1.6.2)

I'm new to jQuery, I was making a slide carousel with it and I don't know if I miss something here so please take a look at my script: function gotoItem(main, hidden, con, speed, state) { ...
2
votes
3answers
89 views

With jQuery, how can I use the “live” method to alert when a new element is added?

First off, I don't want another plugin to do this... jQuery already has the functionality to do 99% of what I want with the live() method. Basically, I want to change this: ...
2
votes
2answers
65 views

how can i remove a character from a class?

I want to remove x_ from every id and every class in a ol. This ol is generated from a form field so I can't get access to it. if I save the field value in a variable, how can i remove these ...
2
votes
1answer
133 views

Tricky jQuery DOM Manipulation (Wrapping text)

I have some HTML as such: <span class="number">1.</span>Lorem ipsum dolor. <span class="special">Sit amet.</span> Consectur adipisicing elit. <span ...
2
votes
1answer
103 views

querySelectorAll: manipulating nodes

As far as I have understood, querySelector returns a real changeable element while querySelectorAll returns a non-live Static Node Set. I want to adjust the style of all elements fitting to a ...
2
votes
0answers
166 views

Strip links, keep markup and text (with or without specific domains) [closed]

Possible Duplicate: PHP Dom Remove element leave contents I'm adding a function to a WordPress theme's function.php. I want to have it strip links from markup, something like this: ...
2
votes
2answers
71 views

how to fadeIn .html()

$('.overview li a').click(function(){ $('#large-img').html("<img src=" + $(this) .attr('href') + "/>" + "<br /><div>" + $(">.desc",this) ...
2
votes
3answers
146 views

creating and removing <div> element in javascript

function labelOnClick () { function makeDivId(id) { return id + "_div"; }; var div = this.getElementById(makeDivId(this.id)); if (div) { ...
2
votes
2answers
98 views

Using prototyping to alter functionality of existing jQuery functions

I would like to alter the functionality of $.prepend() (and probably $.append()) for the purpose of having an "on DOM change event". Can I do something as simple as: $.prepend = function() { ...
2
votes
2answers
311 views

How to Remove dynamic Parent <tr> via OnClick of child <input>

I'm adding the <tr> via a javascript var: var txtBox = "<tr id='dynTR'><td><input type='text' class='textBoxes' /></td><td><input type='text' class='textBoxes' ...
2
votes
4answers
166 views

Add a DOM element between two children

I want to add a dom element between two children, specifically right before the last one. <div id='parent'> <div class='nav-option'></div> <div ...
2
votes
6answers
208 views

jQuery 1.5 How to find and replace 2 cells in a table with a new table row cell?

I have a table similar to the following. <table class="schedule-table" cellspacing="1" border="0" style="width:100%;"> <tr class="DataRow" id="DataRow_1"> <td ...
2
votes
4answers
186 views

How can you check to see if someone has modified your HTML (using something like Firebug)?

Is there an easy way to check to see if someone has modified your HTML? I am currently writing some code that takes data from the DOM and submits it to the backend where it will of course be sanitized ...
2
votes
5answers
222 views

Change img to div with background, with jQuery

I'd like to use jQuery to switch all img elements with a specific class to a div with background. So that all: <img class="specific" src="/inc/img/someimage.png" /> Becomes: <div ...
2
votes
5answers
277 views

How to change a label to textfield with jQuery when its respective link is clicked?

I have a table and I need that when a particular span is clicked, the span before it changes from a label to a text field. The following is the table: <table> <tbody> ...
2
votes
4answers
139 views

Why won't this div add a class in jQuery?

I make a $.get call to my db and it returns some HTML (data): $.get(url, null, function(data) { The HTML it returns is something like this: <div id="1234" class="myclass">..more ...
2
votes
2answers
303 views

jquery - dom manipulation

I would like to show in dialog all elements with specific class. The dialog should hide the rest of the page. So for example: On this SO page I want to show all elements with class="user-info". Those ...
2
votes
3answers
832 views

Which is better: string html generation or jquery DOM element creation?

Ok, I'm rewriting some vanilla JS functions in my current project, and I'm at a point where there's a lot of HTML being generated for tooltips etc. My question is, is it better/preferred to do this: ...
2
votes
1answer
767 views

jQuery to get innerHTML not working on a HTMLFontElement object

I have jQuery to select all font elements that are children of the element with id="right" within the html stored in the var html... when I do an alert to see how many elements it gets: ...
2
votes
2answers
193 views

javascript dom-injected elements don't pick up css-styling in IE

I'm having the weird problem that after having javascript inject some dom-elements the css-rules defined for those elements are not obeyed in IE7(i.e: styling for these elements doesn't happen). ...
2
votes
4answers
923 views

jQuery add class to certain elements

[EDIT] : Sorry guys, the whole post didn't go through. Here is the correct post. Hi, I have a multilevel menu like this : <ul> <li>item 1 <ul> <li>item ...
1
vote
1answer
26 views

How to wrap multiple instances of selected elements into new <div>'s

I need to wrap the div's with the classes .left and .right into a new div. Having problems making this work as I need it to. This is the original markup: <div class="content-main"> <div ...
1
vote
5answers
60 views

Change position of tags in the DOM

<p>I like turtles</p> <h3>Child brags about stuff</h3> <h4>The Herd</h4> How do I change the positions (order) of a tag? To this: <h3>Child brags about ...
1
vote
2answers
34 views

issues with a jQuery object and looping

I am creating a jQuery plugin at the moment, which turns a <select> into a pretty dropdown menu, I having a little bit of a problem though, I can get the options of the selects on a page, by ...
1
vote
3answers
18 views

trouble traversing the DOM

I have some HTML that looks likes this, <dl class="dropdown"> <dt><span>Gender</span><a href="">Go</a></dt> <dd class="shadow_50"> ...
1
vote
4answers
36 views

help with adding Classes with jQuery

I am trying to change my navigation bottom border color based on what link is hovered over, the bottom border color should change to match that of the hovered link, when when the link loses focus or ...
1
vote
2answers
32 views

Unsetting jQuery element manipulation automatically?

I am manipulating some elements with jquery when the doc is ready and when the window is resized, the problem is I dont want to have to specify to set everything back to normal when the condition does ...
1
vote
1answer
73 views

Using RegExp to dynamically create a Regular Expression, and filter content

I am struggling with using the RegExp object to allow me to dynamically create an expression, and apply it to a group of elements. Here is a jsFiddle, below is the code: <div ...
1
vote
2answers
47 views

jQuery — Copying event handlers from an <input> to a <div> one element to another

I don't believe any similar existing questions answer this one. I am developing a plugin that will turn <input type='checkbox' /> into a <div> with two toggle states. The basic idea for ...
1
vote
2answers
285 views

jquery 1.6.2 issue using .prop() for checked and disabled

Please take a look at this fiddle: http://jsfiddle.net/DGzvP/ $("#test").prop({ checked: true, disabled: true }); $("#result").text($("#container").html()); You will see the output is: ...

1 2 3