Suppose i have a link such as
<a class="like_button" href="#" action_click="LikePost">I Like It</a>
How can i search the dom via pure JavaScript to scan the html for the action_click="LikePost"
The code below doest not work for me
document.getElementsByTagName('action_click')
I feel though that a regular expression might needed.