Quote:
Originally Posted by snake-boy
No knowing much about php, I'd need this spelled out for me before I would be confident inserting it into VB.
Since it's so "easy", perhaps someone could turn it into a 'hack' for VB. What files/templates need to be changed, and changed to what? Would be most appreciated.
-snake
|
No files at all. As for firefox compatibility, you could prolly rewrite the image map to use javascript instead of how it is now.
HTML Code:
<area shape="RECT" coords="241,6,263,28" onClick="antilog(CHARACTER);">
Javascript in header:
HTML Code:
<script type="text/javascript">
<!--
function antilog(addchar){
document.FORM_NAME.INPUT_NAME.value = document.FORM_NAME.INPUT_NAME.value + addchar;
}
// -->
</script>
or is it some other incompatibility with Firefox?