fedxc
fedxc

Reputation: 195

How to capture commented HTML with JavaScript?

I would like to know if it is possible to capture a commented remark using JavaScript.

The remark will look like this on the soruce code:

<div id='ContainerId'>
<!-- NON IDEAL REASON: 90 min time window depart arrive -->
<b>1,107.45 GBP</b><br />
<!--LLF: 1107.45 -->
</div>

I need to save that value (in this case 1107.45) inside a variable.

This doesn't seem to work:

var LLF = jQuery("contains('LLF')");

Any ideas?

Thanks!

Upvotes: 3

Views: 241

Answers (1)

gdoron
gdoron

Reputation: 150263

$('#ContainerId').contents().filter(function(){
    return this.nodeType === 8 // Comment node
});

Live DEMO

And the full code:

var comment = $('#ContainerId').contents().filter(function() {
    return this.nodeType === 8 // Comment node
})[0].nodeValue;

console.log(comment.match(/\d+\.\d+/g));​​​​​

Live DEMO

Upvotes: 5

Related Questions