Bài đăng

Mahatma gandhi mandapam

Hình ảnh
                           MAHATMA GANHIJI MEMORIAL                                      Mahatma Gandhiji Memorial is also called Gandhiji mandapam.It is one of the visiting place in kanyakumari for the tourist and  very beautiful and add to the attraction of KK district. The beautiful Gandhi Memorial completed in 1956, is situated as a memorial to the Father of the Nation. Speciality in GANDHIJI MANDAPAM :                        Its focal shape is 79 feet high speaking to the age of the Mahatma at the season of the sun at Mid-day on second October would fall on the peedam through an opening in the rooftop. That is extremely extraordinary in Mahatma Gandhiji Mandapam. Having part of works of art about Mahatma Gandhi history for review by visitor. The dedicatio...

change the button text using JavaScript

Hình ảnh
     In the following example will help you to dynamically change the button text using javascript. Same Example in jQuery Click Here Example  var b1=document.getElementById('btn1');  b1.value="First Button"; Example Program:- (Editor) Editor is Loading... Output:- Advertisement

How to change the button text using jquery

Hình ảnh
     val() is used to change the button text value, in the following example we are used two buttons and change its text dynamically when pressing on the button. Same Example in JavaScript Click Here  $("#btnid").val("Second Button"); Example Program:- (Editor) Editor is Loading... Output:- Advertisement

Convert to lower case letter using javascript/jquery

Hình ảnh
     JavaScript have toLowerCase() method for converting the text to Lowercase letters.  ("String").toLowerCase(); Example Program:- (Editor) Editor is Loading... Output:- Advertisement

materialize css default Check box

Hình ảnh
     When we use the check box the materialize css will convert the design automatically. Example Program:- (Editor) Editor is Loading... Output:- Advertisement

How to animate bloggers browser title bar?

Hình ảnh
     One of the website attracting way is animating title bar, it will reduce the website idl state time. It is very easy to place it. Example image       This screen was taken from chrome browser. Can you see the title bar of the window is rotating, this also rotating in the windows status bar. Animate title bar in blogger <script type='text/javascript'> msg = document.title; msg = msg+"."; position = 0; function scrolltitle() { document.title = msg.substring(position, msg.length) + msg.substring(0, position); position++; if (position> msg.length) position = 0 window.setTimeout("scrolltitle()",110); } scrolltitle(); </script> Add animation press here      If the above button is not work or want to modified the title name follow the steps, otherwise leave all the below steps. Step 1      Login to your blogger by entering your username and password. Step 2   ...

How to create tab design?

Hình ảnh
     jQuery have default design for tabs. We need to import the jquery plugin and jQuery UI plugin then only the tabs() method works properly with good design.      A single content area with multiple panels, each associated with a header in a list. Example Program:- (Editor) Editor is Loading... Output:- Advertisement