In a nutshell, I have a click event and it doesn't seem to be firing. jQuery is being loaded, and this is what I have for the jQuery:
<script type="text/javascript"> (function($) { $(".ajaxForm").click(function() { console.log('click'); }); }); </script> And the HTML
<div class="right"> <span class="ajaxForm" type="ajax"><span>Get Quote</span></span> </div> It's probably just me being stupid, it's been a long day. Anything stand out as being wrong? I've checked, double checked and triple checked the selector.