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

  • SEARCH
  • Home
  • 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 4266384
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T06:45:11+00:00 2026-05-21T06:45:11+00:00

I have a form that I use for login purposes here: <form id =

  • 0

I have a form that I use for login purposes here:

<form id = "membershipInfo" method = "post" action = "Login.aspx">

with an submit button that I want to do a post method and a javascript onclick method like this:

<input type ="submit" id = "submitInfo" class = "MemberInfo" value = "Take Me There!" onclick = "authorize(accept, reject)"/>

The method in the onclick is an facebook authorize method that will pull information from the user (access token). I need this token to have the user proceed in my program. The issue is that when this button is clicked the post method will happen before the onclick is finished, which means that the access token will never be passed with the form.

To get the access token to the page load method I use a hidden input in the form:

<input type = "hidden" id = "hiddenAccessToken"  name = "accessToken" value = "<%=accessToken %>" />

and in the Facebook method I get the access token like this:

function authorize(successCallback, failureCallback) {
FB.getLoginStatus(function (response) {
    if (response.session) {
        // logged in and connected user, carry on
        session = response.session;
        //Set access token
        accessToken = response.session.access_token;
        //Call success callback
        successCallback();
    } else {
        // no user session available, Lets ask for perms
        FB.ui(
        {
            method: 'permissions.request',
            perms:  permissionString
        },
        function (response) {
            if (response && response.session != null) {
                //Get session
                session = response.session;
                //Set access token
                accessToken = response.session.access_token;
                //Call success callback
                successCallback();
            } else {
                //Call failure callback
                failureCallback();
            }
        });
    }
});
//Method hit on successCallback
function accept() {
   //Add access token to hidden input
   $('#hiddenAccessToken').val(accessToken);
}

I don’t want to use a time out (and I don’t think that will work anyways), but I need to slow the page load down until these js methods are complete. Any suggestions?

  • 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-21T06:45:12+00:00Added an answer on May 21, 2026 at 6:45 am

    Why don’t you do the form submit with js, like this:

    <input type ="button" id = "submitInfo" class = "MemberInfo" value = "Take Me There!" onclick = "authorize(accept, reject)"/>
    

    And then:

    function accept() {
       //Add access token to hidden input
       $('#hiddenAccessToken').val(accessToken);
       $('#membershipInfo').submit();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a timed page that I need to use to submit a form
I have form in my html page <form id=login_form method=POST action=index.php> <table> <tr> <td><label
I have a single form that, depending on which radio button is clicked (Login
I have an C# form application that use an access database. This application works
So I have an unbound form that I use to save data to a
I have a form that tries to modify a JComponent's graphics context. I use,
I have two radio buttons on my MVC form that I use to hide
I have a small jQuery plugin that I use for form AJAX validation. There
I have an In-house windows form app that I would like to use Spell
I have seen people say that it is bad form to use catch with

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.