Tagged Questions
4
votes
2answers
394 views
Wrapping a DOM element inside a JavaScript object
I've noticed a common pattern in the JavaScript I've been writing and was wondering if there is already a pattern out there that defines something similar as best practice? Essentially, it's how to ...
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 ...
1
vote
0answers
31 views
An Issue with event mapping after rotating an image DOM element
I have applied transform on an image and also on a view which is holding that image.
The parent view that hold an image has two more small images at its edges, where I handled mouse events to rotate ...
1
vote
1answer
59 views
How to retrieve the element where a contextmenu has been executed
I am trying to write a google chrome extension where I use a contextmenu. This contextmenu is available on editable elements only (input texts for example). When the contextmenu is clicked and ...
1
vote
1answer
315 views
Get notified when objective-c dom updates are ready initiated from webview
I am programmatically updating the DOM on a WebKit webview via DOMElement objects - for complex UI, there is usually a javascript component to any element that I add. This begs the need to be notified ...
0
votes
5answers
74 views
HTML DOM element name as a string
Suppose I have the following HTML snippet:
<input type="text" id="myinput" />
Now I want to get that DOM element using JavaScript:
var element = document.getElementById("myinput");
Works ...
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():-
...