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

learn more… | top users | synonyms

0
votes
2answers
23 views

Removing options from select using jQuery

Suppose I have a Select element: <select> <option value="Name 1">Simon</option> <option value="Name 2">Frank</option> <option value="Name ...
0
votes
2answers
26 views

assigning unique id and unique name to dynamically created element using global variable

I tried different methods to assign unique names to my dynamically created input fields so that I can access their values in PHP. Came to know that it is possible to declare a global variable in ...
0
votes
3answers
39 views

DOM manipulation in html variable

I have this string in variable name data which have html tags and all <div class="cqr"> <span class="ico-cqr2 icon-28 star1">quality</span> <span class="ico-cqr2 icon-28 ...
0
votes
0answers
28 views

Scroll top function doesn't perform as expected

I'm using dragscroller plugin to make a div scrollable with mouse move! There are around 100 sub elements inside the scrollable div. These elements have a click event binded. What I'm trying to do is ...
0
votes
0answers
38 views

jQuery swipe + scroll function

I'm developing a web app for touch devices! ( a POS application which runs on touch enabled machines ) I'm using jquery for some of the UI functionality and I'm stuck on one place. First I'll ...
2
votes
1answer
43 views

Best approach for rearranging DOM according to screen size

I have a standard website which contains its navigation part way down the page. When resized down to 980px a media query kicks in and the navigation needs to change appearance (easy) but also change ...
4
votes
4answers
80 views

How to remove text between two elements with jQuery

So I got the following html: <ul> <li><a href="#">test</a></li> / <li><a href="#">test</a></li> / <li><a ...
1
vote
2answers
58 views

jQuery if element exists doesn't work

I got some Html like this. <div class="box span4"> <img src="demo/img/tile.png" /> </div> <div class="box span4"> Hello </div> Now if there's no image in my ...
0
votes
1answer
56 views

ng-show is not working within HAML template on Internet Explorer 7

I have the following minimum failure case: %span.add-on - if planned_date.blank? %i.icon-calendar - else if successful %i.icon-calendar.foo ...
0
votes
1answer
34 views

Javascript Input Value Not Changeable By User

I am relatively new to Javascript and having some trouble with changing values. Here is my Javascript: function printResults(results, numMeals){ calories=Math.round(results); protein= ...
1
vote
2answers
71 views

Dynamically add text boxes as user types into the last text box

I have an ordered list, within the ordered list I'd like to have two text boxes per list element. I would then like to append at the end of my ordered list another list element containing two text ...
1
vote
1answer
76 views

how to unit test DOM manipulation (with jasmine)

I need to unit test some DOM manipulation functions with jasmine (currently I run my tests in the browser and with Karma) I was wondering what the best approach would be to do this ? For example, I ...
6
votes
3answers
227 views

Jquery resize() causing screen flickering and div offset

The Background: I am trying to create a system that allows to scroll through a kind of map using mouse scroll up and mouse scroll down like so: ------- | | | 1 | | | ------- ...
4
votes
1answer
89 views

How is this element manipulation implemented?

In Google Chrome, you can use shortcuts for elements with contenteditable='true': CTRL + B : Set the highlighted text to bold, for example What happens under the hood is, the <b> tag is ...
0
votes
0answers
37 views

Looking for a JavaScript library for ad hoc widgets web page [closed]

I want to create an ad hoc webpage (initially a blank layout) where a user can create various widgets ( for e.g. weather widget, stock widget, gauge etc..). These widgets will be predefined so I will ...
1
vote
1answer
81 views

jQuery empty() vs text('')

Is there any different between $(element).empty() and $(element).text(''); Which one is better?
0
votes
1answer
52 views

listen elements rendering after DOM initially loads

Is there anyway to listen for elements adding themselves to the DOM after load? Currently I have a bunch of tables using DataTables and I have a bunch of other elements that I would like to manipulate ...
1
vote
1answer
245 views

Javascript/HTML/CSS Wheel of fortune rotate only by difference?

I'm building a roulette the should spin realistically and be operated by dragging the wheel and letting it go. I've gotten 1:1 rotation down, I just need to get it to spin realistically after it's ...
-6
votes
1answer
274 views

jQuery's .append(), .appendTo() and .remove() alternative in pure Javascript [closed]

I have two or three small (very small) projects, where I'm using jQuery only for dynamic creation and remove of HTML objects (.append(), .appendTo() and .remove()). And that seems to be a huge waste ...
0
votes
5answers
72 views

Why does jQuery .after() fire only once?

I'm trying to create a jQuery carousel that loops continuously. When the user selects "rotate," the first li is placed after the last li using the .after() method. This works the first time only. ...
0
votes
0answers
73 views

animationStart event not cross-browser?

I am using a recent trick to discover new nodes added to DOM in a library that makes it comfortable to use. It's a technique that uses animationStart event after a simple (not visible) animation is ...
0
votes
3answers
234 views

How can I highlight a selected list item with jquery?

I have several items in a list and want to highlight the one a user clicks on by applying some css style, maybe a background color etc. My HTML looks like this: <ul class="thumbnails"> ...
0
votes
0answers
63 views

Leaflet - Complex hover an click interactions?

I'm using leaflet to introduce myself to geocoding. I'm following the choropleth demo (http://leafletjs.com/examples/choropleth.html) and have it working correctly. Now, I'm looking to execute a more ...
1
vote
3answers
70 views

How to get content between HTML tags that have been loaded by jQuery?

I'm loading data using jQuery (AJAX), which is then being loaded into a table (so this takes place after page load). In each table row there is a 'select' link allowing users to select a row from the ...
1
vote
2answers
54 views

jquery: manipulating divs and adding effects causes endless loop of uncaught TypeErrors

I am trying to perform three tasks in sequence: a) load html-content via ajax into a hidden div. b) traverse the content and insert elements into existing divs. c) add a slideDown animation to ...
0
votes
2answers
61 views

Slideshow DOM manipulation

I've been looking at various jQuery based slideshow scripts, interested in the different approaches used and how they handle CSS3 based transitions and DOM manipulation. I've a slideshow jQuery-based ...
2
votes
2answers
545 views

AngularJS Informer service

I'm using Twitter Bootstrap for UI in my webapp. Particulary its Alert component. I want to write a simple angular service to wrap Bootstrap's Alert to have a possibility of informing users from any ...
1
vote
2answers
54 views

Is it worth the trouble to add IDs to hundreds of elements for the sake of optimizing jQuery's performance?

I need to do quite a few HTML manipulation using jQuery on a site where there are hundreds of products displayed in the same structures. Pretty much the blocks of codes are each individually wrapped ...
1
vote
3answers
59 views

Jquery: simple way to detach and re-atttach an element?

I know about detach() and the varios methods to insert html. But how do you detach an element, leave a placeholder, and then replace that placeholder with the element later on? The only solution I ...
0
votes
1answer
108 views

Using .replacewith to change images but maintaining id. After that the image does not fire function on hover anymore

When the user hovers over the image with "id=dot0001" a table with id= "info0001" that contains a checkbox with id="checkbox0001" becomes visible. When the user checks the box the image with ...
0
votes
0answers
33 views

Dom edit and reuse in jQuery

Here is what I want to do. I have a mceEditor with the website's stylsheet in the properties as the content_css, I am firing the onchange event to wrap its contents in the elements neccessary to make ...
1
vote
2answers
113 views

How to remove child element and spaces using jquery?

How to remove child element and spaces using jquery? I have the following content: <div class="sectionA"> <p>sfadfafdafdafdaf</p> </div> If I do: $(".sectionA ...
0
votes
2answers
48 views

Document Alternative? DOM?

So I was advised recently not to use document.write. But I can't seem to figure out how to use DOM manipulation to make it document print on screen. This function works so that you hit the button ...
4
votes
2answers
3k views

angularjs filters on ng-model in an input

I have a text input and I don't want to allow users to use spaces, and everything typed will be turned into lowercase. I know I'm not allowed to use filters on ng-model eg. ng-model='tags | ...
0
votes
0answers
113 views

Clearing DOM elements with jQuery, then recreating and rebinding various Functions

I am having a really confusing time which has wasted hours of today! I posted this earlier: Binding jquery-multifile to a dynamically loaded form Which explains part #1 of my problem. I am now ...
0
votes
1answer
240 views

How do I do coffeescript or= correctly?

What I want to do is simultaneously get a list of items, hide them and assign them to a variable like this: jQuery -> client_list or= $('.client-list').find('.actions').hide() But this ...
2
votes
1answer
78 views

Cross browser (modern browsers) manipulation of CSSStyleRule

According to MDN (https://developer.mozilla.org/en-US/docs/DOM/CSSStyleRule) The CSSStyleRule object's style property is read-only. Is there a way to be able to reliably modify its style attributes in ...
1
vote
1answer
129 views

Bad performance IE using documentFragment

To test DOM manipulation versus innerHTML I deviced this little test method using a documentFragment (web page) to append 10000 href elements to a div element. The performance is ok for Chrome or ...
3
votes
5answers
356 views

Using jQuery how can we remove disabled attribute from all elements whose value is false?

I have input checkboxes printed like the following. <input type="checkbox" id="a1" value="11" disabled="false"> <input type="checkbox" id="a2" value="21" disabled="true"> <input ...
0
votes
2answers
46 views

Insert element within a div, and in that div a specific element with a class

So, I'm not getting the hand of it.. What I'm trying to do is add a script element within a div that has an input tag with the class 'colorpick'. <div class="field"> <input type="text" ...
1
vote
1answer
315 views

Availability of MutationObservers in Internet Explorer

AFAIK mutation observers are not available yet in IE. Chrome, Safari, Firefox have their implementations and its working its way through the standardization process. I'm wondering if anyone ...
0
votes
0answers
137 views

Ajax process Files and Post Variables - javascript / jquery / html5

I'm trying to submit files through ajax after they were dropped into a container and submit $_FILES and $_POST information. How is it possible to submit those files through my below described ...
7
votes
3answers
159 views

Add option to a select and select it

I have this code var opt = $("select option:first"); opt.remove(); $("button").on("click", function() { $("select").prepend(opt).val(1); }); That works fine in some browser. But, of course, IE ...
0
votes
5answers
549 views

jQuery - cannot bind events to dynamic elements?

I've come to maintain a piece of javascript that downloads some JSON data from the server, builds a new table row (like $('<tr></tr')) and inserts it into the document. The a node is, at one ...
0
votes
0answers
194 views

How to load and process HTML from Ajax request

I'd like to run a background task in my android app which sends an Ajax request, parses/manipulates the HTML from the response and creates a new object from the HTML data. It is very easy to request ...
2
votes
3answers
85 views

having issue appending li on to ul

I am creating an ul and adding li to it with data in it using jquery append function. Inside this append function I am calling another function to parse more xml data and add it to the ul. But this ...
1
vote
3answers
180 views

How to Remove <a href> Link Tag for a Specific Value using Jquery

I have the following situation within a report that has the following <td> element. Please note that this can appear multiples times as it is a report. My question is, when the value is ā€˜N’, ...
0
votes
3answers
171 views

Update the a href after page load

I am using the Stacktack app to put the summary of post on a website. But, when the stacktack load's the page, the links point to direct url to stackoverflow site, but I want to amend the href link to ...
7
votes
4answers
226 views

“virtual” dom manipulation?

I know that doing multiple dom manipulations is bad as it forces multiple repaints. I.e: $('body').append('<div />') .append('<div />') .append('<div />') ...
0
votes
1answer
160 views

slideToggle a div and move a button in an other div

How can I do this with css and jquery ? As shown on jsfiddle there is a button in the left column. Clicking on this button slide toggles a div in the right column and 2 other pictures appear (picture ...

1 2 3 4 5