What I want to do is to show an email sign-up pop up when a link is clicked.
This is how I am referencing to the external sumome.php file, which contains the js function:
<script type="text/javascript" src="http://www.barcabyfans.com/wp-content/themes/hueman/sumome.js"></script>
This is what I am writing for the link:
<p>Get more awesomeness <a href="javascript:append_script_code()">here</a>!</p>
When the user clicks on the 'here' link, the javascript function append_script_code() should run where it is contained in the sumome.js file.
But for some reason it's not working. My questions are:
The sumome.js file is a WordPress plugin's .php file, so should I reference to sumome.php file?
Am I putting the
<script>...</script>
tags in the right place?
Notes: