Search Results

1
vote

How can I determine if a dynamically-created DOM element has been added to the DOM?

In a perfect world you could hook the mutation events. I have doubts that they work reliably even on standards browsers. It sounds like you've already implemented a mutation event so you could poss …
2
votes

Unique element ID, even if element doesn’t have one

The answer is no, there isn't an internal id you can access. Opera and IE (maybe Safari?) support .sourceIndex (which changes if DOM does) but Firefox has nothing of this sort. …
0
votes

Unique element ID, even if element doesn’t have one

If you can write to the DOM (I'm sure you can). I would solve this like this: Have a function return or generate an ID: //(function () { var idCounter = new Date …
2
votes

What is the fastest way to get a dom element?

DOM manipulation uses native functions to perform simple operations. Browser vendors optimize these. You are building the row from HTML. Internally jQuery is using .innerHTML to build …
5
votes

nearest ancestor node in jQuery

Adding to @nickf's answer: jQuery 1.3 simplifyed this task with closest. Given a DOM: & …
4
votes

What sort of memory leaks should I watch for with jQuery’s data()?

jQuery's data does not keep a reference to the element so that you don't need to worry about memory leaks. It's intended purpose is to solve this exact problem. A slight si …