thats the same thing I was wondering.. if you submitted the form field
via server-side code would it also see the text as uppercase...

something to watch out for Frank.

On Sep 26, 9:38 am, Karl Swedberg <[EMAIL PROTECTED]> wrote:
> It's CSS 2. But it should be this:
>
> input {
>   text-transform: uppercase;
>
> }
>
> However, that will only change the way the text is displayed, not the  
> actual case of the text itself.
>
> --Karl
> _________________
> Karl Swedbergwww.englishrules.comwww.learningjquery.com
>
> On Sep 26, 2007, at 9:32 AM, Danjojo wrote:
>
>
>
>
>
> > omgosh.. I did not even know CSS could do that!
>
> > Is that CSS-2? or -3?
>
> > On Sep 26, 9:18 am, "Andy Matthews" <[EMAIL PROTECTED]> wrote:
> >> Why would you even want to use Javascript for this? Just use CSS:
>
> >> input {
> >>     text-decoration: uppercase;
>
> >> }
>
> >>   _____
>
> >> From: jquery-en@googlegroups.com [mailto:jquery-
> >> [EMAIL PROTECTED] On
> >> Behalf Of Frank Tudor
> >> Sent: Tuesday, September 25, 2007 12:30 PM
> >> To: jQuery (English)
> >> Subject: [jQuery] Re: input type text toUpperCase() jquery question
>
> >> Anybody?
>
> >> On 9/25/07, FrankTudor <[EMAIL PROTECTED]> wrote:
>
> >> As a user types in content to this this text field I would like tho
> >> force the text to uppercase to as keys are pressed.
>
> >> How would this be done?
>
> >> and is toUpperCase a real jquery function?  if not wbhat would be a
> >> simple way to hndle this with either CSS or someother method...
>
> >> Here is what I have and obviously I am stuck...
>
> >> <script type="text/javascript">
> >>         $(document).ready(function()
> >>                 {
> >>                         $('.highball').keypress( function()
> >>                                 {
> >>                                         $('.highball').toUpperCase()
> >>                                 }
> >>                         );
> >>                 }
> >>         );
> >> </script>
>
> >> <input type="text" style="" class="ac_input highball"
> >> autocomplete="off" id="CityLocal" value="" type="text">
>
> >> Frank- Hide quoted text -
>
> - Show quoted text -

Reply via email to