Jump to content
xisto Community

hyuken

Members
  • Content Count

    11
  • Joined

  • Last visited

  1. I think who can feel the advantages is only for people that use DSL connection.....with dial up...i think...it nothing different...
  2. <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.
  3. 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.
  4. 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.
  5. 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.
  6. Microsoft Bill Gates edition??never heard that?? iam linux user...
  7. 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.
  8. 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..
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.