View Single Post
Old 01-11-2013, 09:32 PM   PM User | #9
Old Pedant
Supreme Master coder!

 
Old Pedant's Avatar
 
Join Date: Feb 2009
Posts: 23,237
Thanks: 59
Thanked 3,998 Times in 3,967 Posts
Old Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to all
As an alternative:
Code:
<form method="post" name="logonform" onsubmit="return check_form()">
And then maybe something like
Code:
function check_form( )
{
    if ( math.Random() < 0.5 ) 
    {
        location.href = "http://www.google.com.au";
        return false;
    }
    return true;
}
__________________
An optimist sees the glass as half full.
A pessimist sees the glass as half empty.
A realist drinks it no matter how much there is.
Old Pedant is offline   Reply With Quote
Users who have thanked Old Pedant for this post:
tpeck (01-11-2013)