Techno World Inc - The Best Technical Encyclopedia Online!

THE TECHNO CLUB [ TECHNOWORLDINC.COM ] => Javascript Tricks => Topic started by: Khushi on April 02, 2007, 01:46:24 AM



Title: Long name in Profile
Post by: Khushi on April 02, 2007, 01:46:24 AM
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, 07:19:28 AM
kewl!!