User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
You're currently browsing the JavaScript / DHTML / AJAX section within the Web Development category of DaniWeb, a massive community of 374,164 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 3,230 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our JavaScript / DHTML / AJAX advertiser: Lunarpages Web Hosting

Javascript help please

Join Date: Nov 2004
Location: Dallas, TX [USA]
Posts: 9
Reputation: js-x.com is an unknown quantity at this point 
Rep Power: 0
Solved Threads: 0
js-x.com js-x.com is offline Offline
Newbie Poster

Re: Javascript help please

  #3  
Nov 24th, 2004
1000s of Free Javascripts
<html>
<head>
<script type="text/javascript">
function checkLength(_str,_len)
{
  var _slen=_str.toString().length;
  if(!_slen || _len=="")
    return false;
  else if(_len<_slen)
    alert( "{ipb.lang['l_over']}" + _len + " {ipb.lang['l_characters']}." );
  else if(_len==_slen)
    alert( "{ipb.lang['l_equal']}" + _len + " {ipb.lang['l_characters']}." );
  else
    alert( "{ipb.lang['max_is']}" + _len + " {ipb.lang['l_characters']}. {ipb.lang['youve_used']}" + _slen + " {ipb.lang['l_characters']}." );
}
</script>
</head>
<body>
<form name=f1>
String:<input type=text name=t1 value="abcdefghi"><BR>
Length:<input type=text name=t2 value="3"><BR>
<input type=button onclick="checkLength(this.form.t1.value,this.form.t2.value)" value="Check length">
</form>
</body>
</html>
Reply With Quote  
All times are GMT -4. The time now is 4:01 am.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC