forum_amnesiac
04-17-2009, 09:54 AM
I have a Form in which I have this input line, it is the only input line in the form except for the submit line.
<td input type='password' name='wrd_pass'></td>
I am using a CSS file in which I have the following
input[type="password"] {
text-transform:lowercase;
}
In my <form> line I have an onsubmit function.
I have put an alert in this function to display the value of 'wrd_pass'.
When I test to see if the input has been converted to lowercase, it has not.
Is there a problem with how I'm using text-transform in my CSS file
<td input type='password' name='wrd_pass'></td>
I am using a CSS file in which I have the following
input[type="password"] {
text-transform:lowercase;
}
In my <form> line I have an onsubmit function.
I have put an alert in this function to display the value of 'wrd_pass'.
When I test to see if the input has been converted to lowercase, it has not.
Is there a problem with how I'm using text-transform in my CSS file