Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • Autofill functionality for website forms

    • 0
    • 0
    • 0
    • 2
    • 0
    • 0
    • 0
    • 611
    Answer it

    I have a website whose source code cannot be changed.It has several forms which has repetitive fields so for reducing manual filing of repetitive fields i want autofill functionality.I will have another website from where data will be stored and this data is used to fill form on first website. can anyone please suggest the possible ways.

 2 Answer(s)

  • You can use jQuery autocomplete functionality to achieve this:

    $('input[name="q"]').autoComplete({
        source: function(term, response){
            $.getJSON('your/another/website/url', { q:" any data" }, function(data){ response(data); });
        }
    });
    

    using this you can get data from another website database and autocomplete will give you suggestions to fill your input fields.

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: