Exit popup?? (required for bank website)

Hi,
I'm about to create a website for a bank and I would rather use Adobe Muse for this project than WordPress.  However, I need to be able to create an exit popup that warns people when they are leaving the website after clicking a link.  Banks are require to have this feature. 
For example:  https://localfirstbank.com/
If you scroll down the page and click on any of the social icons (linkedin, etc), you'll see the required pop up. 
How could I go about this using Adobe Muse??? 
Thanks in advance for any help!

In its simplest form, place this code in the HEAD area of the page properties:
<script type="text/javascript"> window.onbeforeunload = function() { return "Your legal text here"; }</script>
This will display a pop-up message if the visitor closes the window or navigates away from the page.

Similar Messages

  • User exit/BADI  required for coding for the selection custom fields in RSA3

    Hi,
       I have a requirement  in the Datasource extractor. I need to add custom Z fields  in the Data souce of the  2LIS_02_SCL and need to include in the selection part. So I have added the custom filed in the append structure and include the check in the selection checkbox in the transaction LBWE  under the datasource specified above. For the corresponding custom fields, to be populated in the ALV list, I have written the code in corresponding user exit  ZXRSAU01.
    Now I can view my custom Z fields in the list as well as on the selection fileds  while executing the transaction RSA3. But I need to write code for the selection criteria part.  On entering value in the selection criteria of my custom z field, no  values are selected to the corresponding query. Please let me know where should i write the coding part for the selection criteria of the Z fields for the Datasource.
    On debugging, to my understanding only  the standard fields are alone getting filtered by providnig the values in the selection part of the RSA3 tcode. It is called in Macros : Sel  < Datasorce> .... and  the fetch cursor is included inside the macros.
    Please let me know any user exits or Badi;s available for it.
    Thanks in advance

    Hi shivu,
    you might try the BAdI RSU5_SAPI_BADI. A good introduction can be found in the following document:
    [Enhancing DataSources with BAdI RSU5_SAPI_BADI|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/3001894b-b1fb-2910-77ba-e80b6f2053b7]
    The BAdI is called at the time of extraction, so this would be the right place to populate your additional fields.
    Best,
    Chris

  • F9N1 Postprocessing required for Bank statement creation

    Hello,
    We have now case that after Mass creation of Bank statements in F9N1 not everything was finished ok. It means that in F9N13 you can check that for one account Status is 'Postprocessing Required'. The issue is that this is now blocking creation of new Mass runs for the same IHC current account showin message that 'IHC xxxx account being edited by run XXXXX from date xxxxx'.
    Do you know which transaction to use to postprocess this ? F9I8 didn't help.
    Thanks and best regards,
    Tomek
    Edited by: Tomasz Karwacki on Jan 30, 2009 11:57 AM

    Hi,
    In F9N8 you can see the account that are locked and the report/program that locked these accounts. You can go to SM37 and check if there are any update jobs in the initial status. These job must be completed (Choose record & Execute it). Once the corresponding jobs are completed the account would be unlocked and futher F9N1 does not give any issues.
    Best Regards,
    Hari.
    Edited by: HariKrishna K on Mar 2, 2009 12:18 PM

  • User exit code required for manadatory variable

    we have vendor in rows  and sales in columns, the requirement is there is a mandatory  variable for retrieving the sales between months, that is if
    customer gives calmonth january as <b>from</b> and march as<b> to</b> the sales should be from Jan to March, if the customer only gives <b>from</b> month and nothing for<b> to</b> month, only <b>from</b> month should be calculated, if the customer gives only<b> to</b> month and no <b>from</b> month, the <b>to</b> month should be calculated. Remember the variable is mandatory.

    Hi,
    Let s say
    var1 is from varaible
    var2 is to variable
    var3 is user exit variable
    USe the code like this:
    DATA:
    l_s_range TYPE rsr_s_rangesid,
    l_s_var TYPE rrs0_s_var_range.
    DATA: LOC_VAR_RANGE LIKE RRRANGEEXIT.
    DATA: LOC_VAR_RANGE2 LIKE RRRANGEEXIT.
    WHEN 'VAR3'.
        IF I_STEP = 2.
          LOOP AT I_T_VAR_RANGE INTO LOC_VAR_RANGE
            WHERE VNAM = 'VAR1'.
          LOOP AT I_T_VAR_RANGE2 INTO LOC_VAR_RANGE
            WHERE VNAM = 'VAR2'.
            CLEAR L_S_RANGE.
            L_S_RANGE-LOW = LOC_VAR_RANGE-LOW(8).
            L_S_RANGE-HIGH = LOC_VAR_RANGE2-LOW(8).
    IF LOC_VAR_RANGE2(8) = '00000000'.
            L_S_RANGE-HIGH = LOC_VAR_RANGE-LOW(8).
    ENDIF.
    IF LOC_VAR_RANGE(8) = '00000000'.
            L_S_RANGE-LOW = LOC_VAR_RANGE2-LOW(8).
    ENDIF.
            L_S_RANGE-SIGN = 'I'.
            L_S_RANGE-OPT  = 'BT'.
            APPEND L_S_RANGE TO E_T_RANGE.
          EXIT.
          ENDLOOP.
          EXIT.
          ENDLOOP.
        ENDIF.
    With rgds,
    Anil Kumar Sharma .P

  • EXIT/BADI REQUIRED FOR DELIVERY SCHEDULE INSERT FOR PURCHASE ORDER

    We are creating delivery schedule for Purchse Requisition created through MRP in Z-Table , Now we requires this delivery schedule dates to be copied directly in PO while creating a PO.
    We have Tried Exits for the same MM06E004 and MM06E005 but after setting a break points system is not stopping at the required screen (delivery schedule date screen).
    Please provide BADI or exits available for the same.
    Thankx

    Dear Mr.Shan ,
    Thanks for your prompt and valuable reply , I had tried the exits mentioned by you previously and was not upto the expectations ,
    Problem solved using stac technique.
    Thanks
    Ankush

  • EXIT/BADI  required for F-02,F-04,F-22

    In F-02,F-04,F-22, after saving account document number generated, after that any EXIT/BADI available to capture that document number ??
    My requirement is::  If the document posting is successfull i want to take a printout so I need to call smartform(zlayout) immidiatly after document number generated.

    Hi,
    Use this simple method to find the badi.
    1. Go to the TCode SE24 and enter CL_EXITHANDLER as object type.
    2. In 'Display' mode, go to 'Methods' tab.
    3. Double click the method 'Get Instance' to display it source code.
    4. Set a breakpoint on 'CALL METHOD cl_exithandler => get_class_name_by_interface'.
    5. Then run your transaction.
    6. The screen will stop at this method.
    7. Check the value of parameter 'EXIT_NAME'. It will show you the BADI for that transaction.
    Hope this helps u.
    Thanks.

  • EXIT/BADI required  for  F-04

    In F-04  after saving account document number generated, after that any EXIT/BADI available to capture that document number ??
    My requirement is:: If the document posting is successfull i want to run BDC program for manual  clearing using transaction f-03 .

    Try this Badi:
    BADI          FI_AUTHORITY_ITEM     Extended Authorization Check for Document Display
    Thanks,
    AMS

  • Fed Lifts Capital Requirements for Banks

    http://www.wsj.com/articles/fed-set-to-finalize-amount-of-capital-big-banks-must-maintain-1437410401  "WASHINGTON—The Federal Reserve sent a message to the largest U.S. financial firms: Staying big is going to cost you. The Fed’s warning, articulated in a pair of rules it finalized Monday, is among the central bank’s starkest postcrisis regulatory moves pressing Wall Street banks to reconsider their size and appetite for risk. The Fed completed one rule stating that the eight largest banks in the country should maintain an additional layer of capital to protect against losses, its plainest effort yet to encourage them to shrink. At the same time, it offered a reprieve to General Electric Co. ’s finance unit from more-intensive regulation, after the company promised to cut its assets by more than half."

    Kenny wrote:
    I couldn't read the rest.. was that the whole article?Oops, I am a subscriber I forget they make you pay to read. Will see about getting it from another source. This one should be open to all http://www.nytimes.com/2015/07/21/business/federal-reserve-finalizes-capital-restraints-for-big-banks.html?_r=0

  • BADI/USER EXIT information required for CLWF

    hi
    i want to badi/user exit for CLWF,to change its rcords through the BAPI:BAPI_CLASS_CHANGE,i found one badi CACL_CHANGENO_NEEDED for my requiremnet,its working as desired only in TCODE,but when i want to change the record through the BAPI,its not executing.
    Can any one please help me ,how to process in this?
    regds
    vipin

    Hi,
    Let s say
    var1 is from varaible
    var2 is to variable
    var3 is user exit variable
    USe the code like this:
    DATA:
    l_s_range TYPE rsr_s_rangesid,
    l_s_var TYPE rrs0_s_var_range.
    DATA: LOC_VAR_RANGE LIKE RRRANGEEXIT.
    DATA: LOC_VAR_RANGE2 LIKE RRRANGEEXIT.
    WHEN 'VAR3'.
        IF I_STEP = 2.
          LOOP AT I_T_VAR_RANGE INTO LOC_VAR_RANGE
            WHERE VNAM = 'VAR1'.
          LOOP AT I_T_VAR_RANGE2 INTO LOC_VAR_RANGE
            WHERE VNAM = 'VAR2'.
            CLEAR L_S_RANGE.
            L_S_RANGE-LOW = LOC_VAR_RANGE-LOW(8).
            L_S_RANGE-HIGH = LOC_VAR_RANGE2-LOW(8).
    IF LOC_VAR_RANGE2(8) = '00000000'.
            L_S_RANGE-HIGH = LOC_VAR_RANGE-LOW(8).
    ENDIF.
    IF LOC_VAR_RANGE(8) = '00000000'.
            L_S_RANGE-LOW = LOC_VAR_RANGE2-LOW(8).
    ENDIF.
            L_S_RANGE-SIGN = 'I'.
            L_S_RANGE-OPT  = 'BT'.
            APPEND L_S_RANGE TO E_T_RANGE.
          EXIT.
          ENDLOOP.
          EXIT.
          ENDLOOP.
        ENDIF.
    With rgds,
    Anil Kumar Sharma .P

  • Configuration for Bank Guarantee

    Hi All,
    Can anybody forward me SD & other module configuration required for Bank Guarantee. My email ID [email protected]
    Thanks in advance.
    Regards,
    Mahi

    Dear Mahi
    May be the link would be useful to you
    <a href="http://help.sap.com/saphelp_46c/helpdata/en/2a/30b746b1d511d194f300a0c9306794/frameset.htm">Forms of Payment Guarantee</a>
    Thanks
    G. Lakshmipathi

  • When logging onto my schools website I receive a popup message overLIB 4.10 or later is required for CSS style plugin. I'm not sure what I need to correct this error.

    After logging into my schools website the pop up message displays '''OverLIB 4.10 or later is required for CSS style plug in'''. After clicking on the ok button it displays the website that I want. Then anytime I go into another area within that same website the pop message displays.

    This could be caused by a problem with a file in Firefox's cache. To clear cached files:
    orange Firefox button ''or'' Tools menu > Options > Advanced
    On the Network mini-tab > Offline Storage : "Clear Now"
    Then reload the page. If the message is gone, try a few additional pages to confirm that the problem is resolved before posting back.
    Any luck?

  • I cannot connect to the login page of my banking websites for Firefox but can from IE also firefox does not close when I shut it down I have just done a clean instal of windowsws7 and teh problem persists on reinstall of FF3.6.13

    I can connect with my banking websites but the login page will not come up. This is a recent occurrence and I have done virus scans and have also recently done a clean instal of Windows 7. The problem persists. I can connect to any other website with no problems. When I close FF it appears to close and Task manager shows as not running but it will not reopen. If I attempt to uninstall I am told that FF is running and needs to be closed. I have to reboot to get to close and be able to reopen.
    I can connect to the bank sites with IE. However I really don't like IE.
    I am using Win7 Professional on a Sony notebook VGN SZ55

    I don't have an answer, but I experienced the same problems trying to set up an airport express to route traffic to my stereo.
    Apple Extreme router, iMac and laptop all worked just fine for months, upon installing Airport Express (step by step, according to instructions), all **** broke loose. Airport Utility was unable to see my Airport Extreme router, after hours of rebooting computer, cable modem, router, and finally a hard reset of the Airport Extreme router, it is finally recognized by Airport Utility again.
    Recreated network, iMac connects to the internet just fine, laptop (Macbook Air) connects to the network just fine, but will not connect to the internet. Network diagnostics does not help, it gets to the "do you have a router? If so, reboot" stage, and never seems to see the router.
    Any suggestions?

  • Can't use keychain for pnc bank website

    I can't store password in keychain for PNC Bank website.  Website has added security, password is entered on separate screen from userid.  Also uses authentication with picture and keyword.  I like added security, but would like to store password in Keychain to save strokes.  Is this possible?

    A workaround is to use the Notes app.
    Type in user names and passwords that you can copy / paste from Notes to the sites login.
    You still have to paste the data but saves time not typing everytime.

  • Can we make as P.center as required field for Bank accounts

    hi friends,
    can we make as profit center as required field for bank accounts in field status group.
    If we make as required, what are the impact /consequences will happen. We are drawing Financial statements at profit center level.
    We are using ECC 6.0 with document splitting.
    Regards,
    Suresh

    Hi,
    If you have document splitting active, where profit center is mandatory, do not make profit center mandatory at the field status group level as this will not allow the documents to split where there are more than one profit center in a document.
    The bank line item gets automatically split in the ratio of liability or Assets line items profit center. And if you make Profit center mandatory in Bank line item then this splitting will not take place. Moreover you will not be able to post any document having more than one profit center.
    You can test this out all by yourself in a test system. Post an Invoice(FB60) as foolows:-
    Expense -Dr.(P.C.-A)- 100
    Expense -Dr.(P.C.-B)-200
       To vendor - 300
    This entry will show in general ledger view as :-
    Expense -Dr.(P.C.-A) - 100
    Expense -Dr.(P.C.-B) - 200
       To vendor .(P.C.-A) - 100
       To vendor .(P.C.-B) - 100
    Now go to F-53 and post payment:-
    Enter Bank Account no., amount, and also enter profit center on the first screen as u hv made P.C. mandatory, and select the above document no. and try posting it. You will get error in this case.
    Do let me know if it is of any help to you.
    Regards,
    SAPFICO

  • Hi basically when i try download a app its saying sign in required ask for sercurity code for bank card and i put the correct details in and still saying its invalid? Can anyone help

    Hi basically when i try download a app its saying sign in required ask for sercurity code for bank card and i put the correct details in and still saying its invalid? Can anyone help

    Refusal of a card is based on information provided matching what is on file from your credit card provider. If it is refused, it generally means something is not matching. That can inclue the name, the address or other information. It has to be exact to match. If you check your credit card bill to make sure you are spelling the name correctly, the address is listed correctly, and yes, ST is different than Street, and it still does not work, contact iTunes support. http://www.apple.com/emea/support/itunes/contact.html

Maybe you are looking for

  • How do I delete everything in my iTunes Library and Start Over?

    How do I delete everything in my iTunes Library and Start Over?

  • Creation of consolidated invoices in AP from legacy

    We have a requirement where we need to import AP invoices from legacy system. There is a specific requirement where the invoices from legacy system needs to be summed up and create one record in Oracle Payables. For example, if we have 3 invoices wit

  • Overlapping conky..

    Hey all again. After a long period Im back on arch as I got a new pc(old one burned). Afer a while using the pre installed winxp I decided to go back to arch and is just now setting it up as I like ot have it. I seem to have lost some of my memory ba

  • Ack Status

    I am passing IDocs from SAP 3.1 to 4.7 via XI and in SXMB_MONI the <i><b>Ack Status shows "?"</b></i> this sign and says <u><i><b>Still waiting acknoweledgement</b></i></u>. Can any body tell me what are the settings need to done to fix this .

  • SUN Identity Manager Gateway

    Hi, Is it possible to provide access (Read/Writ/Execute/delete acccess) to Widows NT shared drive folders by using Sun Idenitry Manager Gateway? -Karthik