Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When a user tries to exit the page after reading price of the product, i want to offer them 1st discount.

  1. If they select 'YES' they buy the product instead of closing the window, if they select 'NO' then i would make 2nd discount offer and this time it will be the last offer.

  2. If they click 'NO' again even second time, his browser will close or else he would buy the product at the given 2nd discount price.

My Example is illustrated below:

<script type="text/javascript">
function getOffers()
{
  var question1 = confirm("Wait! we are now offering this Product in $25.00, buy it?");
  if(question1 == 'true')
  {
        alert('You have purchased this product for $25.00');
  }
  else
  {
        var question2 = confirm("Wait! we would like to make one Final Offer, price of Product in $15.00, buy it?");
        if(question2 == true)
        {
              alert('You have purchased this product for $15.00');
        }
        else
        {
              //Close this window
        }
  }
}
</script>

My question is, how can i trigger this function when user tries to exit (or) refresh the page.

Additional INFO:

I have rewritten the code and trying to fix the annoying page load popup, can any one suggest me on this?

<script type="text/javascript">
function getOffers()
{
  //alert(firrsTime);
  if(firstTime == 'no')
  {
      var question1 = confirm("Wait! we are now offering this Product in $25.00, buy it?");
      if(question1 == 'true')
      {
            alert('You have purchased this product for $25.00');
      }
      else
      {
            var question2 = confirm("Wait! we would like to make one Final Offer, price of Product in $15.00, buy it?");
            if(question2 == true)
            {
                  alert('You have purchased this product for $15.00');
            }
            else
            {
                  //Close this window
            }
      }
  }
}

window.onunload = function(){
    firstTime = 'no';
    getOffers();
}
window.onload = function(){
    firstTime = 'yes';
    getOffers();
}
</script>

I am trying to pass a global variable 'firstTime' to check if it is from onLoad then dont display offer if it is from onUnload then display offer. Is there any solution on this problem?

share|improve this question
2  
is it weird that i know the answer but i won't post because this behavior would be so evil/annoying? – jbabey May 16 '12 at 19:44
1  
@jbabey: No; these situations are annoyingly commonplace on SO. – SLaks May 16 '12 at 19:44
1  
@​Me4U: Don't do this. It is extremely annoying and will make users think very poorly of your site. – SLaks May 16 '12 at 19:45
Why dont you pay a developer to figure this out for you. Things like this make me want to kick things. – Loktar May 16 '12 at 19:46

2 Answers

Use the onunload and onload.

window.onunload = function(){getOffers();}
window.onload = function(){getOffers();}

Though it will show it when user first loads the page, so i wouldn't recommend on doing that.

About the way to distnguish between First load and refresh, Have not tried this, but i found this code somewhere :

    function OnCrmPageLoad()
{
   //bind to the onsave event
   crmForm.attachEvent(“onsave”,OnCrmPageSave);

   if (crmForm.new_ispostback.DataValue ==  true)
   {
           //form was saved
           //reset the field
            crmForm.new_ispostback.DataValue = false;
   }
}

function OnCrmPageSave()
{
    // validate form if needed
    crmForm.new_ispostback.DataValue = event.returnValue = true;
    crmForm.new_ispostback.ForceSubmit = true;
     return true;
}

Play around with it.

share|improve this answer
Hi Eric, is there a way to check the function from displaying on page load first time? Like adding some kind of check inside getOffers() so that users dont feel it annoying? It would be great and helpful to many people if we come across the solution for this. – Me 4U May 16 '12 at 20:01
revised answer. – eric.itzhak May 16 '12 at 20:08
<body onunload="OnUnload()">

then

function OnUnload()
{
   //put code here
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.