hyuken
Members-
Content Count
11 -
Joined
-
Last visited
About hyuken
-
Rank
Newbie [Level 1]
-
I think who can feel the advantages is only for people that use DSL connection.....with dial up...i think...it nothing different...
-
<script language="JavaScript" type="text/javascript">function validFormUse(passF){if(passF.user.value == "") return false;if(passF.pass.value == "") return false;return true}</script> If iam not mistake...you're going to check 2 element user and pass that should not be submitted until both is filled with a string... how about using this code : <form .... onSubmit="if (validFormUse('blablabla')) this.submit(); else return false;">......</form><script language="JavaScript" type="text/javascript">function validFormUse(passF){ if (passF.user.value == "") { alert('Please entry your user name'); passF.user.focus(); return false; } else if (passF.pass.value == "") { alert('Please entry your password'); passF.pass.focus(); return false; } else ruturn true;}</script> i've add an alert() and focus() function so it would have information, and pointing to `FALSE` element. so user can type without moving their mice. i hope it could help you.
-
I've use JSON for my PHP application. JSON make easy to interchange between programming language to JavaScript, Based what i've done, JSON is class/library that we can use to (ex:) convert a variable from PHP variable to JavaScript Variable. As Example : we have an array and we want to use the array in JavaScript <?php$myArray = Array('a'=>'the first', 'b'=>'is second');$json = new JSON();echo $json->convert($myArray);?> returned/print : {a:'the first', b:'is second'} I hope it could help you.
-
Installing Linux On An Ipod Ipod Linux Simple Tutorial.
hyuken replied to barnes's topic in General Discussion
Linux is good Operating SYstem...it can be used (some of) on every device that have storage and display..even Sony PS2 could have Linux system inside the machine. -
Godaddy Domains For $ .79 thats right, 79 cents
hyuken replied to Blacklaser's topic in Websites and Web Designing
actually its not free anough.... -
Hai, there is a software called beTwin (similar to PC cloning), we could have 5 monitor (with five video card on mainboard) and (keyboard and mice) connected using USB...you can buy it.
-
Microsoft Bill Gates edition??never heard that?? iam linux user...
-
Javascript Framework - A Shortcut Javascript a shortcut javascript
hyuken replied to hyuken's topic in General Discussion
This library is only a Javascript file, you could write it as usually, ex : <script language="JavaScript" src="prototype.js"></script> just download the library from URL above. the library is POWERFULL. -
hi, today im going to give you small tutorial how to use `Prototype JavaScript Framework` 1st you have to download `Prototype JavaScript Framework`library from http://forums.xisto.com/no_longer_exists/ prototype makes easy to using Javascript, ex : when you want to point (get) the element from HTML usually we use : document.getElementById('elementId') with prototype we use $('elementId'), yeah...world getting small..with prototype. example we`re going to get value from an element of <input type='text' id='txt1' name='myFriend'> with prototype we use alert($('txt1').value) when you want to fill element with text : <span id='txt1'></span>$('txt1').innerHTML = "the fox is running fastly"; OK this is little sample, we going step by step.. CU..for my next tutorial..