Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to get a list of all inline event tags from an HTML <body> string, how would I be able to do this?

Example:

 <a onclick='foo()'></a>

I'd want to extract onclick='foo()'.

Is it possible with REGEX or any other alternatives?

share|improve this question
yes take a look here – qwertymk Oct 16 '11 at 7:53
Yes, I've read that,, wondering if there are any alternatives. Although events are very constant in terms of inline, so REGEX will probably work. – Trevor Oct 16 '11 at 8:12
You can iterate over each element and access its onXXXXX attribute... – Felix Kling Oct 16 '11 at 8:21
Couldn't, cause I'm doing this in Node.js and the JSDOM module ironically strips inline events. – Trevor Oct 16 '11 at 21:58

2 Answers

up vote 0 down vote accepted

Here's one. The event-thing will be group 1:

<\w+[^>]+(on[a-z]+=["'][^"']+["'])[^>]*>
share|improve this answer
Sorry, but your REGEX doesn't work. – Trevor Oct 16 '11 at 21:55
That's weird, works fine for me. Have you tried it with case insensitive search? – Tetaxa Oct 17 '11 at 7:25
If the problem is the group, btw, you could use a little more naive regex like (on[a-z]+=["'][^"']+["'])(?=[^>]*>) – Tetaxa Oct 17 '11 at 7:59

You should let the browser do the parsing, for example like this:

var doc = document.implementation.createHTMLDocument('');
doc.documentElement.innerHTML = '<body onload="alert(1)"></body>'; // your string here

Then get the on* attributes using DOM methods:

var attributes = Array.prototype.slice.call(doc.body.attributes);
for (var i = 0; i < attributes.length; i++) {
    if (/^on/.test(attributes[i].name)) {
        console.log(attributes[i].name, attributes[i].value);
    }
}
share|improve this answer
I agree you should use the DOM or some library if you're actually in a browser. Otoh, if you're searching through the code for inline event handlers to replace them with something else, regex is probably easier. – Tetaxa Oct 16 '11 at 20:49
The reason why I need this is that I'm doing this in node.js and ironically the jsdom module is ignoring inline events. – Trevor Oct 16 '11 at 21:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.