Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #22.6K
~1K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums

7 Posted Topics

Member Avatar for Ragnarok

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]

Member Avatar for Airshow
0
256
Member Avatar for ukndoit

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 …

Member Avatar for saidyakhyoev
0
186
Member Avatar for Deepa

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]

Member Avatar for js-x.com
0
288
Member Avatar for beckerc

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]

Member Avatar for js-x.com
0
185
Member Avatar for aprillyn01

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]

Member Avatar for js-x.com
0
107
Member Avatar for TomScarlett

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 …

Member Avatar for js-x.com
0
148
Member Avatar for MMX

[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 …

Member Avatar for js-x.com
0
164

The End.