javascript tutorial for beginners in hindi – Introduction to JavaScript video series




Is video se hum JavaScript video series ki shuruvad karenge means in this video I will give you introduction to javaScript video series. In this video series we will cover:

1. Basic JavaScript
2. Some advance topics of Javascript
3. How to write Javascript
4. Where to put javaScript
5. JavaScript variables
6. Javascript functions
7. Javascript objects
8. Javascript operators
9. Forms in Javascript
10. events in javascript
11. DOM – Document object model element in javascript

For all my tutorials go to: http://websofttutorials.com/

Original source


14 responses to “javascript tutorial for beginners in hindi – Introduction to JavaScript video series”

  1. hi can you give me ideas , I am ui developer, my experience is 5 years but not MCA qualifications only BA and I want to job after 2 years in abroad so please suggest me can I take job without MCA in abroad, please give me idea, reply please your suggestions

  2. <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Document</title>
        <script src="js.js" type="text/javascript"></script>
         <script>
          
          
        </script>
    </head>
    <body>
       <form action="" onsubmit="return ">
           <p>User Name: <input type="text" name="name" id="name1"/></p>
           <p>Password:<input type="text" name="pass"/ >  </p>
           <p>Email:    <input type="text" name="email"/> </p>
           <p>Phone No: <input type="text" name="phone"/> </p>
          
        <input type="submit" onclick="load()" value="Submit" name="submit"/>
          
          
       </form>
       <p id="display"></p>
      
    </body>
    </html>js.js
     function load()
            {
              
                var i=document.getElementById("name1");
                var z=i.value;
                if(z=='')
                    {
                      
                      document.getElementById("display").innerHTML="Plz Fill the Field ";
                       
              
                    }
              
            }
    Problem:-  when I click on submit button the "Plz Fill the Field" does not appear in <div id="display"></div>
    plz help me about it.

Leave a Reply