Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Javascript > Converter

Reply
Thread Tools

Converter

 
 
Nikola
Guest
Posts: n/a
 
      02-12-2006
Hellooo! Can someone help me please. I tipe this code and it don't work!!!
Whyyyyyy.
<html>
<head>
<title>Text object value</title>
<SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript">
<!--
function upperMe()
{
document.converter.ulaz.value =
document.converter.izlaz.value.toUpperCase()
}
//-->
</SCRIPT>
</head>
<body>
Unesi mala slova koja se prevode u velika:<br>
<form name="converter">
<input type="Text" name="ulaz" value="primjer" onchange="upperMe()"><br>
<input type="Text" name="izlaz" value="">
</form>
</body>
</html>




 
Reply With Quote
 
 
 
 
Evertjan.
Guest
Posts: n/a
 
      02-12-2006
Nikola wrote on 12 feb 2006 in comp.lang.javascript:

> <html>
> <head>
> <title>Text object value</title>
> <SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript">


do not use LANGUAGE="JavaScript"

> <!--


do not use <!--

> function upperMe()
> {
> document.converter.ulaz.value =
> document.converter.izlaz.value.toUpperCase()


exchange ulaz and izlaz

>}
> //-->


do not use //-->

> </SCRIPT>
> </head>
> <body>
> Unesi mala slova koja se prevode u velika:<br>
> <form name="converter">
> <input type="Text" name="ulaz" value="primjer" onchange="upperMe()">


try onkeyup

<br>
> <input type="Text" name="izlaz" value="">
> </form>
> </body>
> </html>
>



<SCRIPT TYPE="text/javascript">

function upperBelow() {
document.forms['converter'].elements['izlaz'].value =
document.forms['converter'].elements['ulaz'].value.toUpperCase()
}

</SCRIPT>

<form name="converter">
<input type="Text" name="ulaz" value="primjer" onkeyup="upperBelow()">
<br><input type="Text" name="izlaz" value="">
</form>

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Moyea Video Converter with iPad video converter brntkobe1 Computer Support 0 04-18-2010 08:22 AM
Plextor ConvertX PX-TV100U USB Personal Video Converter Silverstrand Front Page News 0 08-29-2005 02:38 AM
Type Converter Problem in User Control M West ASP .Net 1 05-15-2004 08:58 AM
Re: RS422 to I2C Converter Niv VHDL 1 06-30-2003 09:02 AM
Re: RS422 to I2C Converter petrus bitbyter VHDL 0 06-28-2003 02:17 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57