Techno World Inc - The Best Technical Encyclopedia Online!

THE TECHNO CLUB [ TECHNOWORLDINC.COM ] => Javascript Tricks => Topic started by: Khushi on April 01, 2007, 08:16:24 PM



Title: Long name in Profile
Post by: Khushi on April 01, 2007, 08:16:24 PM
Have a Long name in Profile..Just Follow The Steps..

# Create a new profile.

# while you sign up on google account page, do not enter your first and second name.
# Run the following two scripts one after the other.

Code:
javascript:var i=0;function de(){i=i+1;document.forms[0].elements[10].maxlength=200;}void(setInterval(de,300));

Code:
javascript:var i=0;function de(){i=i+1;document.forms[0].elements[11].maxlength=200;}void(setInterval(de,300));

# Write something in First and second name not exceeding 200 characters.

# Save the changes.


Title: Re: Long name in Profile
Post by: Mark David on April 02, 2007, 01:49:28 AM
kewl!!