Tagged Questions
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
2answers
1k views
Is there a way to get all of a DOMElement's attributes?
I'm reading some XML with PHP and currently using the DOMDocument class to do so. I need a way to grab the names and values of a tag's (instance of DOMElement) attributes, without knowing beforehand ...