One of the way to dynamically execute Javascript codes is by using hyperlink. The trick is to use a URL starting with javascript: , followed by the Javascript code itself.

The URL can be in image, link, or CSS style, and in the example below an alert will pop up when the link is clicked;

<a href="javascript:window.alert('Red Alert')">
Click here
</a>