Techno World Inc - The Best Technical Encyclopedia Online!

THE TECHNO CLUB [ TECHNOWORLDINC.COM ] => Javascript Tricks => Topic started by: Tina on September 20, 2007, 12:52:30 PM



Title: Age Increaser
Post by: Tina on September 20, 2007, 12:52:30 PM
Age Increaser

open http://www.orkut.com/EditGeneral.aspx.

Paste the Script it will ask you your year of birth type the for example 1900 and update.Now check your profile you date of birth will be 106.Enter whatever you want to.

Code:
javascript:var y=prompt('Year Of Birth','');var newOption = document.createElement('option');newOption.selected="selected";newOption.text = y;newOption.value = y;document.getElementById('birthYear').add(newOption, null);void(0)