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 879565
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T11:57:10+00:00 2026-05-15T11:57:10+00:00

I have a form and it has 4 input elements. if the user enters

  • 0

I have a form and it has 4 input elements. if the user enters just two entries and clicks anywhere on the screen (out the form)…i would like to save the details..it is like auto-save.

I have id of my form..i want to compare with form id of the current control on the screen..so that i can ssave the data if both form ids are different..

could you please tell me how can i get the form id of current control location on screen (some times the control could be outside the forms..in that case form id of current cotrol location would null)… but how can i determine that in javascript.

please suggest…

Many Thanks in advance,
Jack.

  • 1 1 Answer
  • 1 View
  • 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-15T11:57:11+00:00Added an answer on May 15, 2026 at 11:57 am

    That’s an interesting question.

    Well, if you didn’t think a second (as I admittedly did), you would just hook on the blur event of the HTML <form> element in question.

    <form onblur="autosave(this)">
    

    However, the HTML <form> element doesn’t support that event. Too bad.

    I then thought about jQuery’s new 1.4 focusout() event.

    $('form').focusout(function() { autosave(this); });
    

    Unfortunately that event get fired as well when you just jump (tab, click) to the next input field inside the same form. Not so nice, it’ll probably be too expensive to autosave on every fieldjump. The same effect as with an $(':input').blur(function() { autosave(this.form); });.

    I then tried the other way round using focusin():

    $('form').focusin(function() {
        $(this).addClass('focused');
    });
    $(':not(form)').focusin(function(e) {
        if (!$(e.target).parents('form.focused').length) {
            var form = $('form.focused').removeClass('focused');
            autosave(form);
        }
    });
    

    Strangely enough this works in IE only and not in the other browsers. It’ll be another IE bug/quirk that focus is supported by all elements other than input elements.

    Your best bet will probably be hooking on the click() event instead.

    $('form').focusin(function() {
        $(this).addClass('focused');
    });
    $(':not(form)').click(function(e) {
        if (!$(e.target).parents('form.focused').length) {
            var form = $('form.focused').removeClass('focused');
            autosave(form);
        }
    });
    

    This works fine. You can find here a live demo.

    Note that I don’t mean to push you jQuery (a JS library which insanely eases HTML DOM traversion and manipulation) through your throat or so, but I don’t see nice ways in plain JavaScript to achieve this without writing 10 times as much as code here.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

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.