unclosed popup stay open on page load

Dear all,

JDEV version is 11.1.1.7

We are facing a strange behavior (as I know).

We popup opened during the processing of some input on jsff data.

This popup isn't closed yet.

now, we hit the url of the page in your browser window.

We see the popup stays open.

as far as I know because this is the new page request, popup should not open the loading of the page.

I wonder how the browser remember the State of the pop-up window.

Please let me know why is this strange behavior?

KT, we need more information on the way in which you installation page and how the pop up is managed.

Is the set of antoCancel true?

Timo

Tags: Java

Similar Questions

  • jQuery Mobile - Popup doesn't open after F5, but not on the first page load

    Greetings guys,

    Unfortunately, there is very little documentation on how to combine the APEX 4.2 with jquery mobile components, so I hope that some geniuses here can help me.

    On a single page with a bunch of hole components, there is also a popup div
    <div id="myPopup" data-role="popup">
       <!-- close button, safe button, input field and short list... -->
    </div>
    He gets open with js:
      $( "#myPopup" ).popup( "open" );
    This all works well, not to mention that the face that it works as after you refresh the page!
    The page loads via js:
        $.mobile.changePage('f?p='+ $v('pFlowId') +':20:' + $v('pInstance') 
                           , { transition:"slide", reloadPage:true });
    ... who also works very well so far. Same problem, I had before when I was using a dialog instead of the pop-up box. -only show after refreshing the page.

    This must surely have something to do with how JQM loads and makes the page (outside the APEX-job) - a simple enough question. I also tried different ways of calling the page, without any difference to this problem. Unfortunately I'm quite new to work with JQM, so maybe someone here can help me.

    Thank you very much in advance,
    Best regards
    Tobi

    When you think the loading multiple pages is the issue that you can fix that by using the variable apex.gPageContext$ .

    In order to get the popup in the use of the last page / current / real: $("#myPopup",_apex.gPageContext$).popup ("open")

    Documentation says (not more and not less then):
    apex.gPageContext$-used to limit the jQuery to the active desktop or Mobile current page jQuery selectors.

  • Whenever I try to open other pages, they'll just be "loading" for 30 seconds then it says that the page cannot load (as if my internet is disconnected)

    Recent internet connection problems

    Recently, my internet has been acting weird. He has never acted like this before, until 2 people moved my basement and began to share Internet (maybe a coincidence, but not sure). Sometimes when I leave my computer on and stay away from the keyboard and go back some time after and open my internet browser, only my home page would be in charge. Whenever I try to open other pages, they will simply be "loading" for 30 seconds then says that the page cannot load (as if my internet is disconnected). But the problem is, when I click on network and sharing Center, there is nothing wrong with that.

    Access - LAN and the Internet
    Connection - connection to the Local network

    It's the same when my Internet works fine, but I can't just browse other Web pages EXCEPT the home page that appears when I first open my browser. When this happens, I usually unplug my modem then reconnect OR just keep trying to load a page when after like 5 minutes or more, everything works normally.
    How can I solve this problem? It is annoying and happens almost everytime I go back to use my computer after staying idle for some time.
    By the way, I noticed that I have 4 'networks '. I'm not sure what they are, but I could merge or delete them. It would help my situation?
    Control Panel-> network and interest-> network and sharing Center Center-> customize-> Merge or Delete network locations.
    I am very annoyed by the present and I would be grateful any entry in this case.
    Thank you in advance.

    Hello

    Follow the steps in this links:

    http://Windows.Microsoft.com/en-us/Windows-Vista/troubleshoot-network-connection-problems

    http://Windows.Microsoft.com/en-us/Windows-Vista/troubleshoot-Internet-connection-problems

  • Error opening the page of modal (plugin skillbuilder) during the loading of the page

    Hi all

    I use 4.2.1. (on 11 GR 2), theme 25.
    SkillBuilder Modal plugin v2 page

    Modal pages are working on all sorts of events, great, but if I try to open the other via a D.A. on loading the page, it fails with ' Eception TypeError: loading of the object has no method 'stopImmediatePropagation""error (in the browser console). "
    < edit >
    just found out that this error is caused by the "cancel event' DA action that should be fired after the modal dialog box open. If I omit this event Cancel modal page is not loaded, but also no error appears.
    < / Change >

    Any ideas on how to solve this problem? In the end, I just want to open a modal window after loading the page depending on the value of an item set when loading the page (the branch sets an element value to indicate that the modal window must be open).


    Concerning
    Bottom

    Published by: bottom of Klerk on 2013-apr-11 07:43

    Bottom,

    The modal shows do not charge is actually quite simple. Look at the generated code for the dynamic action and note in particular the code "javascriptFunction":

    {"name":"modal on load","bindEventType":"ready",actionList:[{"eventResult":true,"executeOnPageInit":false,"stopExecutionOnError":true,javascriptFunction:function(){
       if (this.browserEvent !== 'load'){
          apex.jQuery(document).apex_modal_page('openPageFromApexThis', this);
       }
    },"attribute02":"STATIC","attribute03":"f?p=54687:38:115741808752478:::38:::","attribute05":"data-url","attribute06":"div#success-message","attribute07":"AUTO","action":"PLUGIN_COM_SKILLBUILDERS_MODAL_PAGE"}]}];
    

    You can see that there is an explicit for the browserEvent criterion, and it must be different from "load."

    Of course, when you create a dynamic action with type "Page load", the browserevent will be "load", so no popup and no errors. Running a page in debug and research in the javascript console, you can also click through events fired, for example, I have this in the console:

    Dynamic Action Fired: modal on load (PLUGIN_COM_SKILLBUILDERS_MODAL_PAGE) Object { triggeringElement=document, affectedElements=[1], action={...}, more...}
    

    Firebug allows me to click on the object and display its properties. One of them is the "browserEvent" and set to "load".
    This prevents also the modal open when you actually set the real action of pull on the loading of the page.

    I tested a bit after commenting on prevention onload, and while I'm sure there are reasons why it was built in like that, I have immediate problems. The modal open during loading and anything funky happens, not even when you navigate around in the iframe.
    This does not however only if you want the modal to react on the loading of the page that your only option is to change the the plugin plsql code. I would say: test it enough!

    Go to the plugin, change it. Under Source > Code PLSQL find this:

       l_result.javascript_function :=
          'function(){' || l_crlf ||
          '   if (this.browserEvent !== ''load''){' || l_crlf ||
          '      apex.jQuery(document).apex_modal_page(''openPageFromApexThis'', this);' || l_crlf ||
          '   }' || l_crlf ||
          '}';
    

    and change it to this:

       l_result.javascript_function :=
          'function(){' || l_crlf ||
          --'   if (this.browserEvent !== ''load''){' || l_crlf ||
          '      apex.jQuery(document).apex_modal_page(''openPageFromApexThis'', this);' || l_crlf ||
          --'   }' || l_crlf ||
          '}';
    

    As you can see, I only commented those 2 lines, but it should allow the modal to open the loading of the page. I hope this helps you forward a bit.

  • 30.0 Firefox is so slow since updated. IE &amp; Chrome not having problems loading pages, showing the blank pages, need two or more tests to open Web pages.

    30.0 Firefox is so slow since updated. IE & Chrome not having problems loading pages, showing the blank pages, need two or more tests to open Web pages. It seems to have something to do with the Visual data on the pages. My MSN homepage gets old and dies every time I open the page after the re-opening and closing of firefox. It takes forever! What is a memory drain? Each open page in a new session of firefox suffer the same fate.

    Start Firefox in Safe Mode {web link}
    While you are in safe mode;
    Press < Alt > or < F10 > to display the toolbar.
    Followed;

    Windows; Tools > Options
    Linux; Edit > Preferences
    Mac; name of the application > Preferences

    Then Advanced > General.
    Find and stop using hardware acceleration.

    Dig safe web sites and see if there is still a problem. Then restart.

  • When I open Firefox pages don't load until I click on the tab.

    I've just updated to Firefox 9.0.1 to 7.0.1 with an hour or two with 8.0.1. I'm usually anywhere from 8-20 tabs that exist from a previous session when you open the browser. I have an addon that allows me to 'faviconize' tabs, so I don't see anything but the favicons, which in the past was a good sign that the pages associated with the tab fully loaded.

    Now when I start Firefox the favicons all the show and everything looks fine, but when I finally click on one of them pre-existing tabs on the page is empty, the favicon disappears and is replaced by the circle of rotation (if not faviconized I guess that the title of the page would be replaced by "connection...) "), and the content of the page loads for the first time. This is extremely annoying and a waste of time. I do a lot of high volume of navigation and having to wait for load pages that would have been loaded in the past already is a disadvantage. If I click through all of them will start to reload.

    Yes, I have a lot of extensions, but all existed and cooperated well until this problem started. They are a topic: config or other parameters I can adjust to get this back to what I consider normal (that is, the page already loaded when I select the tab)?

    Check the "don't load the tabs until you choose" option in Options > general > startup is disabled.

  • Why Support of Firefox home page load when I open firefox?

    Why Support of Firefox home page load when I open firefox? I'm on Dial-Up and I have my homepage to Yahoo.com. Home page of Firefox Support both Yahoo.com pages load at the same time. It takes too much time. I already read the homepage of support and have no need every time I load Firefox. How can I stop it each time to load?

    Implement: config and filter support.mozilla.com (if that's the page you mention actually) to see source. Also check that you have only a single home page in tools > general and that you bring to the top of the previous session, see https://support.mozilla.com/kb/How+to+set+the+home+page

    If you have a very close tab, then this is a pinned tab app. You can detach an app tab by right-clicking on the tab and choosing "unpin tab '.

  • I keep get redirected to google everytime I open facebook. who's who of the charges and allows me to connect, but once the page loads I get redirected to my homepage... can help all

    I keep get redirected to google everytime I open facebook. who's who of the charges and allows me to connect, but once the page loads I get redirected to my homepage... can help all

    Hi TonyHutton,

    1. what browser you use on the computer?

    2. did you of recent changes on the computer?

    3. only happens with the facebook site?

    4. do you have security software installed on the computer?

    Check if the problem persists on all other sites as well.

    See the link below and try them the steps mentioned, check if it helps.

    Difficulty of your web browser hijacked

    http://www.Microsoft.com/security/PC-security/browser-hijacking.aspx

  • See the popup in jsff to the loading of the page

    Hello

    I see a lot of posts and articles discussing the scenario of af on page loading popup display but cannot find a case where the popup component is a fragment of page jsff.

    I have a popup in a fragment of page jsff which goes like one region to multiple jspx pages. I need to show the popup when loading the page.

    How can I achieve this? I tried to use javascript in the page fragment, but it did not work.

    Pointers please...

    Thank you.

    The solution depends on your version of jdev. However, Frank sumarized all in this blog http://www.oracle.com/technetwork/developer-tools/adf/learnmore/108-triggerpopupinregion-1994836.pdf

    Timo

  • How to disable the home page when popup is opened?

    Hello

    With the help of Jdev 11.1.2.3

    I have two buttons on each row in a table that open pop-up windows.

    If I open one of them (say p1), I can still click on the page and open the other popup (p2). In this case, two pop - up is open on top of the other which is a mess.

    So my question is: is there a way to prevent the user to click on the page, while a popup is open?

    Also, one of the popups (p1) launches a btf where very probably other popups will be open also (different from p2), so I would like to prevent the user from clicking anything on the page for the duration of the taskflow.

    Thank you!

    MB

    Hello

    1 - can you use a dialog inside your popup? In my view, using a dialog box, you disable the rest of the page.

    2 - you can create a link for each popup variable. The attribute, then disable/measure the other button based on this variable, then using events setPropertyListeners and popupClose to set true / false.

    Concerning

  • First tab opening accordion jquery loading page

    Hello, I wonder how I'd the first tab of my accordion to open when the page loads. It's a custom accordion and it is difficult to find the answer online.

    I want it to be specific to a certain page if possible rather than universal through the site.

    Here's the HTML code:

    < div id = "st-accordion" class = "st-accordion" >

    < ul >

    < li >

    < a href = "#" > Lorem ipsum < span class = "st arrow" > open or close </span > < /a >

    < div class = "st-content" >

    < p > Lorem ipsum dolor sit amet, adipiscing elit computer. Amongst computer auctor ante, sodales pretium felis auctor in. Aenean tempor orci vel vestibule lobortis, justo augue, laoreet turpis, id 195kgs dolor sed arcu arcu. SED id dolor tellus. Nulla sollicitudin, risus eros in ac and tincidunt nisl ultricies. Nam 195kgs departing Morbi pretium libero in ultricies lacus semper ac. Vestibule in a malesuada vel lorem ac posuere ligula nibh. DUIs varius city vehicula. Maecenas convallis tellus in tellus eget EST lacinia sollicitudin facilisis. UT tortor, pretium lacinia non sit amet, sold ac ipsum quam. Donec quis felis fringilla leo eget pulvinar accumsan libero. < /p >

    < / div >

    < /li >

    < li >

    < a href = "#" > Lorem ipsum < span class = "st arrow" > open or close </span > < /a >

    < div class = "st-content" >

    < p > Lorem ipsum dolor sit amet, adipiscing elit computer. Amongst computer auctor ante, sodales pretium felis auctor in. Aenean tempor orci vel vestibule lobortis, justo augue, laoreet turpis, id 195kgs dolor sed arcu arcu. SED id dolor tellus. Nulla sollicitudin, risus eros in ac and tincidunt nisl ultricies. Nam 195kgs departing Morbi pretium libero in ultricies lacus semper ac. Vestibule in a malesuada vel lorem ac posuere ligula nibh. DUIs varius city vehicula. Maecenas convallis tellus in tellus eget EST lacinia sollicitudin facilisis. UT tortor, pretium lacinia non sit amet, sold ac ipsum quam. Donec quis libero accumsan felis fringilla pulvinar eget in leo < /p >

    < / div >

    < /li >

    < /ul >

    < / div >

    < / div >

    < / div >

    " < script type =" text/javascript"src =" http://AJAX.googleapis.com/AJAX/libs/jQuery/1.6.4/jQuery.min.js "> < / script > .

    < script type = "text/javascript" >

    {$(function()}

    $('#st-accordion').accordion ({}

    oneOpenedItem: true

    });

    });

    < /script >

    "< script type =" text/javascript"src="js/jquery.easing.1.3.js "> < / script >

    "< script type =" text/javascript"src="js/jquery.accordion.js "> < / script >

    < / div >

    And the CSS:

    
    
    
    
    
    .st-accordion{
    
        width:100%;
        min-width:270px;
        margin: 0 auto;
    
    
    
    
    
    
    }.st-accordion ul li{
        height: 100px;
        border-bottom: 1px solid #c7deef;
        border-top:1px solid #fff;
        overflow: hidden;
    }
    
    
    .st-accordion ul li:first-child{
        border-top:none;
    }
    
    
    .st-accordion ul li > a{
        font-family: 'Josefin Slab',Georgia, serif;
        text-shadow: 1px 1px 1px #fff;
        font-size: 22px;
        display: block;
        position: relative;
        line-height: 100px;
        outline:none;
        -webkit-transition:  color 0.2s ease-in-out;
        -moz-transition:  color 0.2s ease-in-out;
        -o-transition:  color 0.2s ease-in-out;
        -ms-transition:  color 0.2s ease-in-out;
        transition:  color 0.2s ease-in-out;
    }
    .st-accordion ul li > a:hover{
        color: #1693eb;
    }
    
    
    .st-accordion ul li > a span{
        background: transparent url(../images/down.png) no-repeat center center;
        text-indent:-9000px;
        width: 26px;
        height: 14px;
        position: absolute;
        top: 50%;
        right: -26px;
        margin-top: -7px;
        opacity:0;
        -webkit-transition:  all 0.2s ease-in-out;
        -moz-transition:  all 0.2s ease-in-out;
        -o-transition:  all 0.2s ease-in-out;
        -ms-transition:  all 0.2s ease-in-out;
        transition:  all 0.2s ease-in-out;
    }
    .st-accordion ul li > a:hover span{
        opacity:1;
        right: 10px;
    }
    
    
    .st-accordion ul li.st-open > a{
        color: #1693eb;
    }
    .st-accordion ul li.st-open > a span{
        -webkit-transform:rotate(180deg);
        -moz-transform:rotate(180deg);
        transform:rotate(180deg);
        right:10px;
        opacity:1;
    }
    
    
    .st-content{
        padding: 5px 0px 30px 0px;
    }
    .st-content p{
        font-size:  16px;
        font-family:  Georgia, serif;
        font-style: italic;
        line-height:  28px;
        padding: 0px 4px 15px 4px; 
    }
    .st-content img{
        width:125px;
        border-right:1px solid #fff;
        border-bottom:1px solid #fff;
    }
    
    
    @media screen and (max-width: 320px){
        .st-accordion ul li > a{
            font-size:14px;
        }
    }
    
    
    @media screen and (max-width: 800px){
        .st-accordion ul li > a{
            font-size:16px;
        }
    }
    
    
    
    
    
    
    
    
    
    
    
    You can find the page at http://bit.ly/Zrpt1s
    
    

    Any help is appreciated thank you grately!

    Try

    {$(function()}

    $('#st-accordion').accordion ({}

    oneOpenedItem: true

    Open: 0

    });

    });

  • Popup connection needs to open the page full screen.

    I am using a login popup window which, after appropriate authentication, opens another page via a cflocation tag. Problem is that it opens the page in the popup window, not in a new window full screen as I'd like. I tried to apply a target to the cflocation url attribute, but that did not work. This is the first time I used windows pop up and it left me speechless. How can I get my new page to open in full screen?

    I guess that if you must do it with you must cflocate to a page that contains the appropriate JavaScript code.

    If you could do somehting like

    Then in the parentRedirect.cfm you would have something like

    This code is not tested, I will memory. He is also assuming that you use standard JavaScript of windows (for example window.open ())

    Jason

  • Need to open another page jspx as model popup

    Hello world

    I have another question about the popups and model. I'm working on JDev 11gU2 ADFRC

    I have a model to my pages, and there is a link on my model to display information to the user. for this I need to get the info from the user database. so I have to make a definition of the page from my user information page.
    But the problem is when I click on the link my model info to open the information page for the user. It's not open and page refresh error.

    in fact in my model is the source of the page.
    <f:subview id="userInfo">
                <jsp:include page="/popUps/UserInfo.jspx"/>
    </f:subview>
    
    
    <af:commandNavigationItem text="UserInfo"
                                                  immediate="true">
     <af:showPopupBehavior popupId="::userInfo:popup1"
                                                triggerType="action"/>
     </af:commandNavigationItem>
    and in my account Info is the source of the page-
    <?xml version='1.0' encoding='windows-1252'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=windows-1252"/>
      <!--oracle-jdev-comment:auto-binding-backing-bean-name:backing_popUps_AccountDetailsPopUp-->
      <af:popup binding="#{backing_popUps_AccountDetailsPopUp.popup1}"
                      id="popup1">
              <af:dialog title="Account Detail" type="none"
                         inlineStyle="margin:0.5px,0,0,0.5px;"
                         closeIconVisible="#{!backing_popUps_AccountDetailsPopUp.editMode}"
                         partialTriggers="panelBox1 panelBox2 panelBox3"
                         binding="#{backing_popUps_AccountDetailsPopUp.dialog1}"
                         id="dialog1">
                <af:decorativeBox topHeight="25px"
                                  inlineStyle="margin:0.5px; height:460px;"
                                  theme="dark"
                                  binding="#{backing_popUps_AccountDetailsPopUp.decorativeBox1}"
                                  id="decorativeBox1">
                  <f:facet name="center">
                    <af:panelStretchLayout startWidth="5px" endWidth="0px"
                                           topHeight="0px" bottomHeight="0px"
                                           binding="#{backing_popUps_AccountDetailsPopUp.panelStretchLayout1}"
                                           id="panelStretchLayout1">
                      <f:facet name="center">
                        <af:decorativeBox theme="light"
                                          inlineStyle="height:430px; width:482px;"
                                          binding="#{backing_popUps_AccountDetailsPopUp.decorativeBox2}"
                                          id="decorativeBox2">
                          <f:facet name="center">
                            <af:panelGroupLayout xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
                                                 inlineStyle="padding:1%;"
                                                 partialTriggers="commandLink1 commandLink2 commandLink3 commandLink4 commandLink5 commandLink6 commandLink8 commandLink9 commandLink10"
                                                 binding="#{backing_popUps_AccountDetailsPopUp.panelGroupLayout1}"
                                                 id="panelGroupLayout1">
                              <af:panelBox text="Employee Information"
                                           partialTriggers="commandLink1 commandLink2 commandLink3"
                                           binding="#{backing_popUps_AccountDetailsPopUp.panelBox1}"
                              .
    .
    .
    .
    .
    .
                                           binding="#{backing_popUps_AccountDetailsPopUp.spacer2}"
                                           id="spacer2"/>
                              </f:facet>
                            </af:panelGroupLayout>
                          </f:facet>
                        </af:decorativeBox>
                      </f:facet>
                      <f:facet name="start">
                        <af:spacer width="10" height="10"
                                   binding="#{backing_popUps_AccountDetailsPopUp.spacer3}"
                                   id="spacer3"/>
                      </f:facet>
                    </af:panelStretchLayout>
                  </f:facet>
                  <f:facet name="top">
                    <af:panelGroupLayout binding="#{backing_popUps_AccountDetailsPopUp.panelGroupLayout8}"
                                         id="panelGroupLayout8">
                      <af:outputText value="Account Detail : 900101"
                                     inlineStyle="font-weight:bold; font-size:14px;"
                                     binding="#{backing_popUps_AccountDetailsPopUp.outputText10}"
                                     id="outputText10"/>
                    </af:panelGroupLayout>
                  </f:facet>
                </af:decorativeBox>
                <f:facet name="buttonBar">
                  <af:commandLink text="Close"
                                  inlineStyle="font-weight:bold; color:Blue;"
                                  disabled="#{backing_popUps_AccountDetailsPopUp.editMode}"
                                  partialTriggers="panelBox1 panelBox2 panelBox3"
                                  shortDesc="#{backing_popUps_AccountDetailsPopUp.editMode ? 'Can not close in edit mode...' : 'Close Window'}"
                                  binding="#{backing_popUps_AccountDetailsPopUp.commandLink11}"
                                  id="commandLink11">
                    <af:resetActionListener/>
                  </af:commandLink>
                </f:facet>
              </af:dialog>
            </af:popup>
    </jsp:root>
    In fact, I need to open a page in the world and I can't put this link to each page. while I put this on the model.
    I made a page popup too to logout of the application in the same way, this is the file to work, but the difference is that this page is not any def page.
    But account info page.
    I want to use without adding the dialog box: page ADF - config.Xml

    Any help to solve this problem?

    Thank you
    FIZZZ...

    Hello

    If you set the commandNavigationItem attribute partialSubmit = true, then that should solve the problem.

    Frank

  • I reset my homepage to yahoo and now firefox has a pop up that tells me that they are not my home page whenever I open a page

    I prefer the yahoo homepage..... so I put my yahoo homepage. now, whenever I open a page, I get a pop up of firefox, telling me that they are not my home page and I need to check the action I want... can we stop this very annoying pop up or do I have to remove firefox itself. ???

    What looks like the popup? I think that Yahoo may have a bar in the page content area that encourages to make your Yahoo homepage. However, if it appears outside of the page, and especially if it displays when you visit other sites, it could be caused by an add-on unwanted. Here's an example another user recently published along these lines:

    Here's my method of tracking down and cleaning of the bad modules, the air pirates and injectors ad. I know it seems long, but it's not so bad.

    (1) open the Control Panel, uninstall a program. After the loading of the list, click on the column heading "installed on" to group infections, I mean additions by date. This can help the undisclosed items bundle smoker who snuck out with some software, you have agreed to install. Beware of everything that you don't recognize / remember, since malware often uses sounding names important or innocent to discourage you remove. Out as much garbage as possible here.

    (2) open Firefox page modules using either:

    • CTRL + SHIFT + a
    • "3-bar" menu button (or tools) > Add-ons
    • in the Windows "Run" dialog box, type or paste
      firefox.exe "about:addons"

    In the left column, click on Plugins. Set essential and unrecognized plugins 'never enable '.

    In the left column, click Extensions. Then, in case of doubt, disable (or delete, if possible) not recognized and unwanted extensions. Do not forget that all extensions are optional, none come with Firefox, and you can learn more about them by checking their reviews on the site of the Add - ons.

    Often, a link will appear above at least an extension disabled to restart Firefox. You can complete your work on the tab and click one of the links in the last step.

    (3) you can search the rest of problems with scanning/cleaning tools listed in our technical support article: Troubleshooting Firefox problems caused by malware. These scanners on request are free and take a long time to run. If they end quickly, especially if they require the payment you have a serious infection. I suggest the specialty forums listed in the article in this case.

    Success?

  • Page open another page? e-mail marketing.

    I started to do some e-mail marketing, but came to the realization that I can't include my PayPal donation widget directly in the email. SO otherwise I want users to click on a link and go to a page on my site in a new tab, of course and then when loading this page I want a new window to open it with a fixed size and without scroll bars, no url bar and I want the tab open to close while it seems that the only thing that has opened is the new window.

    I tried to do things with javascript, but I just confused myself. Can't someone please provide me with a code? Thank you!

    You must link to your home page on your site. On this page, use this code in the head tag.

    And this in your body tag line:

    But note that popups on browsers blockers will block this popup opened.

    This is not a recommended way to do things - especially considering that you are looking to collect donations.

    What's ideal would be to connect you with a gift to perceive or some similar pages when you load a fancybox during the loading of the page and make your PayPal page load inside the Fancybox. It works in browsers.

    You can see FancyBox here: http://www.fancybox.net/

Maybe you are looking for

  • Previews of photos are messy

    Some pictures in my Photo preview does not match the actual image. How do I re - generate all previews? Y at - there no shortcut startup keyboard or any command in picture? Command-Option at the start of the picture don't re - generate previews. If I

  • You will need to re - install windows xp home edition after hardware failure.

    Hello I have an old e-machines computer desk (T1842) I bought nine years ago. It comes preinstalled with microsoft windows xp home edition, there is little time, we had a power surge in our House because of an act of God. I didn't throw this computer

  • Need to driver and application for Dell Inspiron 15R n5010 webcam model.

    Hello Recently, 2 days before I bought a portable model 15R n5010 with back support. I installed Windows 7 Ultimate OS on this machine. LAN and Web cam dirvers (the default Microsoft web cam driver) got installed automatically. While all the drivers

  • Behance and portfolio?

    I am a creative Member Cloud: [email protected]. I received emails from Adobe on Behance and portfolio. This means that Adobe will host my Web page (site) under the name of my choice? If Yes, where can I get instructions to create this page?

  • How repeat/option output values from XML in the CLOB column?

    Environment:Oracle 11.2.0.3 EE on SolarisVery much a newbie XML but try.  :-)I have a table with the XML stored in a CLOB (no, I can't imagine the environment but I live here).I need to display the data in a flat file format.  Some of the data is bot