I've got a form on a webpage which has graphical buttons to trigger different actions - here's the code for one such button:
This works fine but on some mobile phones the image is missing, presumably because the browser doesn't support the input type 'image'. I've tried to figure out how to achieve the same result using <a> and <img> tags but I can't get it to work, do I need to use Javascript? This is what I tried:
- Andy
___________________________________________________________________
If you think nobody cares you're alive, try missing a couple of mortgage payments
Code:
<input class='graphical' type='image' src='./nav_callin.gif' alt='Call in' value='Call in' onClick="this.form.action='./callin.php'">
Code:
<img class='graphical' border=0 src='./nav_callin.gif' alt='Call in' onClick="this.form.action='./callin.php'">
- Andy
___________________________________________________________________
If you think nobody cares you're alive, try missing a couple of mortgage payments