VBScript client code only works with IE.
Chrome and Firefox, more standards compliant, expect Javascript client code
It looks like your click handler is hiding / showing something. This is pretty easy to achieve in Javascript with jQuery, for example, this should hide the "elementid" on click:
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script>
$(document).ready(function(){
$('#elementid').click(function(){
$(this).hide();
});
});
</script>
Jobbo source
share