Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7604523
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T23:55:55+00:00 2026-05-30T23:55:55+00:00

I am trying to figure out how to create a small web page onload()

  • 0

I am trying to figure out how to create a small web page onload() animation that types text in a form field and then presses a button. Kinda like Let me Google that for you.

Suggestions? I have been searching for a jQuery plugin (preferably) that accomplishes this, or am open to plain JavaScript, but have been coming up empty.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T23:55:56+00:00Added an answer on May 30, 2026 at 11:55 pm

    http://jsfiddle.net/Pcjua/

    the cursor will be just an absolutely positioned PNG image that moves to the box, executes the following code. and after the string is exhausted, move the cursor to the box, then followed by the trigger call in this code.

    // quick example of searching via google using "http://www.google.com/search?q="
    
    <form method="get" action="http://www.google.com/search" > 
    <input type="text" name="q" />
    <input type="submit" value="I'm Feeling Lucky" />
    </form>
    
    ​$(document).ready(function() {
    
        //get element references
        var input = $('input[name="q"]');
        var button = $('input[type="submit"]');
        var form = $('form');
    
        //the string exploded into single characters
        var query = "Let me Google for you".split('');
    
        //create function and execute immediately (wrapping of and appending of parenthesis)
        (function autoTypeMe() {
    
            //get the first letter and append in the input
            var letter = query.shift();
            input[0].value += letter;
    
            //if string not fully typed, continue
            if (query.length) {
                setTimeout(autoTypeMe, 100);
            } else {
    
                //move the cursor here
    
                //trigger the click in two ways, click the button, or submit the form
                button.trigger('click');
                //or
                //form.submit();
            }
    
        }());
    
    });​
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to figure out the best way to create a class that can
i am trying to figure out how to create a javascript alert box asking
I am trying to figure out how to create 3 divs and have them
I'm trying to figure out how to create personalized urls for double-byte languages. For
I am very new to Python, and trying to figure out how to create
I am trying to figure out the best way to create a view like
I am trying to figure out the best way to create a navigation menu
I am trying to figure out how to accomplish the following task: Create a
I am trying to figure out how to get the program to create a
Trying to figure out an equation to get the current group a page would

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.