No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
7 Posted Topics
The best Javascript book i've found is: Pure Javascript: A Code-Intensive Premium Reference [SAMS] by R.Allen Wyke, Jason D. Giliam, and Charlton Ting [url=http://js-x.com/]1000s of Free Javascripts[/url]
You could try escaping the "\" in the pair "\n" to be "\\n". This might delay the evaluation of the newline until you want it evaluted. I know there is a tool-tip DHTML popup box example on this javascript site. But it is also used on this page [url]http://jsx/consult/p/2004_calendar/[/url] [url=http://js-x.com/]1000s …
if: [code]<img src="abc.gif" name=myimg>[/code] then: * document.myimg.width * document.myimg.src same syntax for: border, complete, height, vspace, lowsrc, name, src, vspace, width methods: handleEvent() events: onAbort, onError, onKeyDown, onKeyPress, onKeyUp, onLoad [url=http://js-x.com/]1000s of Free Javascripts[/url]
if there is not an item in the record, then length is not defined. try: var _len=document.form.item.length?document.form.item.length:0; Then if it is 0 you know its not an array. [url=http://js-x.com/]1000s of Free Javascripts[/url]
have you re-installed your web browser? [upgrade to the latest version]. second I would try to install a different web browser. [url=http://js-x.com/]1000s of Free Javascripts[/url]
You will need a server side programming language to accept the form posted data. PHP is great for this purpose and has built in routines to connect to many different databases. if you POST the data [<form method=POST>] then PHP can get the data by: $_POST['form_item'] [<input type=text name=form_item>] depending …
[url=http://js-world.com/]1000s of Free Javascripts[/url] [code] <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 …
The End.
js-x.com