Go Back   CodingForums.com > :: Client side development > JavaScript programming

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 04-10-2005, 12:27 PM   PM User | #1
designer_bhutan
New Coder

 
Join Date: Apr 2005
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
designer_bhutan is an unknown quantity at this point
Exclamation Help pls. new to Js

hi all, i am new to js and need some help badly. i have managed to make a page for conversion to hex characters but the conversion is done only after user clicks on submit button i need it to be done as the user types. thanks in advance.

i am attaching my code if u copy and run the page in broser u can understand me better.

<HEAD><TITLE>Unicode 2 converter</TITLE>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<style>
.titre1 {
font-family: Geneva, Arial, Helvetica, sans-serif;
font-size: 18px;
font-weight: bold;
color: #225E7D;
font-style: italic;
}
</style>
<SCRIPT>
var submitcount;
function reset()
{
submitcount=0;
}

function textCounter(field, countfield) {
countfield.value = field.value.length;
}
function textCountDown(field, countfield, maxlimit) {
if (field.value.length > maxlimit)
field.value = field.value.substring(0, maxlimit);
else
countfield.value = maxlimit - field.value.length;

}
</SCRIPT>
<SCRIPT language=javascript type=text/javascript>
<!--
//Fonction de formatage
function formatage (myvar, longueur)
{
myvar=String(myvar);
while (myvar.length < longueur)
{
myvar = "0"+myvar
}
return myvar;
}

function encode(){
if(document.forms[0].ascii.value!= ''){
var vText = document.forms[0].ascii.value;
document.forms[0].hex.value = convertToHex(vText);
document.forms[0].ascii.focus();
document.forms[0].ascii.blur();
document.forms[0].ascii.select();
}
}
function convertToHex(num) {
var hex = '';
for (i=0;i<num.length;i++)
hex += formatage("0" + num.charCodeAt(i).toString(16).toUpperCase(),4);
return hex;

}

</SCRIPT>
<META content="Microsoft FrontPage 4.0" name=GENERATOR></HEAD>
<BODY>
<P>&nbsp;</P>
<FORM name="blah" action="">
<B>Text</B><BR>
<textarea class="titre1" onkeydown=textCounter(this.form.ascii,this.form.remLen); onkeyup=textCounter(this.form.ascii,this.form.remLen); name="ascii" cols="75" rows="1"></textarea>
&nbsp; <BR>
<INPUT tabIndex=2 readOnly maxLength=3 size=5 value=0 name="remLen">
<BR>
<input name="hex" type="text" value="" size="75">
&nbsp; <BR>
<input name="reset" type="reset" value=Clear>
&nbsp;&nbsp;&nbsp;
<INPUT name="button" type=button onclick=encode() value=Submit>
</FORM>
</BODY>
designer_bhutan is offline   Reply With Quote
Old 04-10-2005, 07:15 PM   PM User | #2
brandonH
Regular Coder

 
Join Date: Oct 2003
Location: on a ship
Posts: 574
Thanks: 1
Thanked 6 Times in 5 Posts
brandonH is on a distinguished road
hope this helps

ok to start off is there a reason why you use the following in the encode() function?

document.forms[0].ascii.focus();
document.forms[0].ascii.blur();
document.forms[0].ascii.select();

if you get rid of those and add the encode() function to the onkeyup event of the textarea, that should give you the result you want. the thing is if you do that if the user decides to delete all the content it will delete all the hex values except the very first value inputed because you have your script saying as long as the text area isnt ='' then do it. so i also recomend getting rid of that as well.
brandonH is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

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

Forum Jump


All times are GMT +1. The time now is 09:22 PM.


Advertisement
Log in to turn off these ads.