*
Now with that said... here is an example of what I was trying to accomplish and it works in all browsers EXCEPT for IE8.
- Code: Select all
<a href="index.php" ><button type='button' class='button' />Add</button></a>
When clicking the button it would go to the "index.php". Not in IE8 however. I had to do this in order to get it to work.
- Code: Select all
<button type='button' class='button' onclick="location='index.php'" />Add </button>
I guess if the button isn't tied to a form it like to be difficult!
