Friday, 22 March 2013

Simple way To Download YouTube Video

Simple Way To Download YouTube Video.No add-on Required, NO extra Software is Required.


Steps For Downloding YouTube Video.

Step-1:

Search Any Video and Open Video.

Step-2:
For Example your YouTube link is this ....

http://www.youtube.com/watch?v=Mj5R6fuRNxU

Then add "10" in your YouTube Link..

http://www.10youtube.com/watch?v=Mj5R6fuRNxU

Press the Enter...

Step-3:

Next Page you find Different video format and Download button..

Download it...


Enjoy guys.....


Sunday, 7 October 2012

Easy way to Download from YouTube.

How to Download YouTube video.


Step-1

In Mozila Firefox browser..]
goto tools > Add-ons(Ctrl+Shift+A)


Step-2

Search DownloadHelper Add-ons
and Install this Add-ons....
and Download YouTube Video...


Saturday, 6 October 2012

How to start with HTML

Begin With HTML.

1)Steps:

 First Write a Code in notepad as shown below.
<html>
<head>
<title>First HTML</title>
</head>
<body>
      Hi
</body>
</html>

 Then save this file as .html extension.......
 open this file in web browser.....
 output as shown below...



Here we write code between <body> </body>

We can also use notepad++ as editor.
The best editor for html is Dreamweaver.

Tuesday, 2 October 2012

Popup Boxes in Javascript

Popup Boxes in Javascript.

There are three kind of popup box is in javascript.
1)alert box.
2)confirm box.
3)prompt box.

1.Alert box.
   alert box is use for the only give the msg to user for alert..
    
    For eg:

     <html>
     <head><title>Alert Box</title>
     <script type="text/javascript">
             alert("This is alert box in javascript.");
      </script>
      </head>
      <body>
      </body>
      </html>
   
    OUTPUT:

ALERTBOX
    



2.Confirm box.
   This is use for confirm to user.


For e.g
     <html>
     <head>
     <title>Confirm box</title>
     <script type="text/javascript">
             confirm("This confirm box:");
                if(!confirm)
                 {
                     alert("not confirm");
                   }
                 else
                {
                    alert(" this is confirm..");
                 }
      </script>
      </head>
      <body>
      </body>
      </html>
       
       OUTPUT:




3.Prompt box
     It is use for the get the value from user.
     We will get the value integer as well as String from the user.

 For e.g
 <html>
     <head><title>Alert Box</title>
     <script type="text/javascript">
            prompt("Enter Value:");
    </script>
    </head>
    <body>
    </body>
     </html>

  OUTPUT:

  





How to Create image Slide show in javascript.

How to Createimage  Slide show  in javascript.

<html>
<head>
<title>image slider</title>
<script type="text/javascript">

      <!-- Here create instance of the image  -->
     <!-- If you want to use 10 image create 10 instance of image..-->
      var img1=new Image();
     img1.src="your image path" ;<!-- Here give the path for image...in each instance -->
var img2=new Image();
     img2.src="your image path" ;
      var img3=new Image();
img3.src="your image path" ;
</script>
<script type="text/javascript">
 var step=1;
function slider()
{
    

  document.images.slide.src=eval("img"+step+".src");
  if(step<3)
{
  step++;
 }
  else
  {
    step=1;
  }
    setTimeout("slider()",2100);
}
</script>
    
</head>
<body  onload="slider()">
<!-- here onload of the page function will call -->

<img src=" image src"slide" height="200" width="200" />
<!--put all the images which is use in the slider in one  folder then  give proprer src of the image, any one image src give above,.... ..  -->
</body >


</html>



I hope you will do this....