Tagged Questions
2
votes
3answers
87 views
Find dom elements containing text and other dom elements inside
I'm trying to apply a class to all elements which contain text or which contain text and other dom elements inside. At least there must be some sort of text inside the element.
This div should get ...
2
votes
4answers
102 views
How to determine whether a specific DOM element is visible or not?
Using jQuery, what is the easiest way to determine whether a particular element is visible? I don’t mean visible within the current viewport, but on the page.
Ideally, the function should return ...
2
votes
5answers
136 views
JQuery See through dialog overlay
There are several JQuery plugins to put a modal dialog and show a dom element in the dialog. But I'm looking for a dialog overlay which can show some portion of the screen and these region should be ...
2
votes
4answers
148 views
What's the difference between a jQuery object and a DOM element? Difference between .get() and .index()?
I'm lead to this question when trying to figure out the difference between jQuery's .get() and .index(), I've looked over the jQuery API and I still don't get what the difference is between them, ...
2
votes
2answers
735 views
jQuery - returning $(this) DOM Element
i'm using DD_Belated.png to save all IE6 users from seeing the madness of unsupported png.
However, this great script takes either selector or DOM Element as parameter to it's only function to do ...
0
votes
2answers
30 views
Save DOMobject as String
Heyho,
imagine, you have a DOMelement like
text
and you have saved this in a variable elem in a function
function(elem){ var elem=elem; }
And NOW you want (in fact it is me who wants that :-)) ...
0
votes
4answers
219 views
Accessing properties of html element inside javascript function using $(this) gives undefined
I am calling a function test() on an anchor tag like this:-
<a class="link" onclick="test();">Hello</a>
And I am trying to access the class of the anchor inside the function test():-
...
0
votes
7answers
715 views
JQuery - Hardcoding HTML in Javascript - Is there a better way to dynamically create dom elements?
I have a lot of messages, and raw HTML that I hard code in my javascript code, such as:
var subjectId = $(subject).attr('subjectId');
var subjectName = $(subject).attr('subjectName');
var html = ...