javascript

  1. Marc0

    Dropdown Menu Using Javascript

    Hi everyone, Every good web site contains good navigation for the visitors. This is the part that I'll be requesting some precious knowledge from you. I want to create a nice one level drop-down menu using javascript as a language of choice. To those who are knowledgeable in this language...
  2. jdunhin

    Input field Javascript

    Show one fields value in another input text field. HTML: <input type="text" id="name" > <input type="text" id="name2" > Javascript: <script src="http://code.jquery.com/jquery-1.5.js" type="text/javascript"> <script type="text/javascript"> $(function(){ $("#name").change(function(){...
  3. Andre

    Jquery or Javascript, which is better for using ?

    Hi web developers, Accoding to you, Jquery or Javascript, which is better for using ? waiting for valuable replies :D
  4. Marc0

    validate a URL with Javascript

    The input can begin with either the text "http" or "file", so the two are grouped together with a | to show that either one or the other value is acceptable. Whether the user is getting the image off of their hard drive or off the Web, the next characters have to be "://", so that's checked for...
  5. Marc0

    Displaying Random Images with Javascript

    If your site is rich with graphics, or if you are displaying digital artwork, then you may want to have a random image from your collection appear when the user enters your site. This simple HTML creates the page for a random image. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0...
Top