How to refresh a page in Safari

In IE there is refresh option.  How can I refresh a web page in Safari?

Maybe there is a misunderstanding, but normally you need to refresh the page when there is something wrong. I often have small issues for instance with flickr, a picture does not display because of their servers (some farms are sometimes not active, then get active again). The pictures display as a question mark in a small blue square. If the pictures are restored, and you refresh the page on Safari, the picture will NEVER display, you need to clear the cache. The only way to do this is the following (found in another forum post):
1. Go to Safari > Preferences > Advanced and select Show Develop menu in menu bar.
2. Go to Develop > Empty caches
If you THEN refresh the page, the content will be displayed correctly.

Similar Messages

  • How do i refresh the page in safari

    how do i refresh the page in safari version 7

    Click the refresh icon at the right end of the address bar where you type in URLs.

  • Refreshing long pages in Safari

    I frequently visit a web site that consists of long pages of discussion. In order to follow these discussions, it's necessary to repeatedly refresh the page. As best I can determine, the only way to refresh a page in Safari for the iPhone/Touch is to jump to the top of the page and click the refresh icon... and then manually scroll the whole way down the page, over and over and over again. I would suggest that it would make sense to have a refresh button in the tool bar at the bottom of the screen? There's plenty of space. Or perhaps the ability to customize that tool bar?

    No this hasn't helped. It seems that web browsing just doens't work. I'm pretty sure now that it's a symptom of the EFI/SMC update/s. Torrents work fine as do http downloads. It's just the web browsing that is on and off. mostly off. Does anyone know how to roll back the firmware on the Macbook? I've tried the firmware restoration CD but it doesn't work because my firmware updates were successful.
    Andrew Leitch

  • How to Refresh a Page once saved to database in ADF.

    Hi,
    I created a JSF page using project template as "JSF,ADF,business components".
    There is a List of values displayed in a dropdown list,
    User can create new value and once it is saved to the database it should reflect in the list of values.But it is not displaying in the LOV and it is happening only when i close that page and open a new one.
    Can u please tell me how to refresh a page without closing the current page once save button is clicked.
    Thank you,
    Harika.

    Mini wrote:
    Hi Hari,
    Yes i have a apex page redirects from the ebs menu like you said. But for the refresh issue instead of modifying in the jsp i thought of bringing the automatic refresh for that apex page once it is loaded within apex.
    However these type of issues are sometimes get fixed by clearing browser cache or just by restarting your browser. Have you tried it?Yes i have tried, by clearing the browser cache and also by restarting the browser then too it still persist.
    Any DA action will be helpful for refreshing that page for 1sec once it is loaded. Since i dont want it to be loaded multiple times often once it is loaded.
    The refresh has to be only once if the page is loaded.
    or is it possible to Refresh the page based on the application page item through DA
    Thanks
    Brgds,
    MiniTechnically Yes, you can create a D.A. that will fire only once based on some apex page item or application item value. However this is NOT the correct solution.
    <li> When you see apex page (after clicking menu in EBS), do you see apex url in browser address bar? Can you post the URL here?
    <li> If you directly log-in to APEX (not via EBS), do you still face this issue?
    Regards,
    Hari

  • How do you edit pages in safari?

    Does anyone know how to edit web pages in Safari? I used to use netscape and it was simple: you simply chose the "edit page" option. But I can't find anything like that in Safari.

    Safari doesn't edit web pages. In the past, Netscape did have a web page editor (Netscape Composer). Its successor seems to be SeaMonkey Composer. But most web browsers don't have editing capabilities.
    There are many web design programs available for Mac OS X, from free shareware programs to expensive web design suites.
    Message was edited by: Rachel R

  • [IPhone SDK] How to close all pages after safari exit

    Apps close when you hit the home screen, however i find that Safari seems to keep multiple pages open even you close it , which no doubt uses memory. so does anyone know how to close these pages after safari exit ? Thanks very much.

    Does anyone know it , please give me some advises , thanks very much.

  • How to refresh a page in apex, once it is loaded

    Hi friends,
    I need to refresh the entire apex page automatically, once after the page is loaded. How to achieve this in apex.
    Whether need to use any DA for the auto-refresh. If so, can you kindly help me with that guys.
    Thanks
    Brgds,
    Mini

    Mini wrote:
    Hi Hari,
    Yes i have a apex page redirects from the ebs menu like you said. But for the refresh issue instead of modifying in the jsp i thought of bringing the automatic refresh for that apex page once it is loaded within apex.
    However these type of issues are sometimes get fixed by clearing browser cache or just by restarting your browser. Have you tried it?Yes i have tried, by clearing the browser cache and also by restarting the browser then too it still persist.
    Any DA action will be helpful for refreshing that page for 1sec once it is loaded. Since i dont want it to be loaded multiple times often once it is loaded.
    The refresh has to be only once if the page is loaded.
    or is it possible to Refresh the page based on the application page item through DA
    Thanks
    Brgds,
    MiniTechnically Yes, you can create a D.A. that will fire only once based on some apex page item or application item value. However this is NOT the correct solution.
    <li> When you see apex page (after clicking menu in EBS), do you see apex url in browser address bar? Can you post the URL here?
    <li> If you directly log-in to APEX (not via EBS), do you still face this issue?
    Regards,
    Hari

  • How to Refresh The Page When The Value of selectinputData Changes

    Hi;
    I have a select input date component and I want to refresh the page when the value of selectinputdate changes. What is the way to do it?
    Also what is the way to do the same thing with choosedate component?
    Thank you very much...

    Hi Turhan,
    You may want to read about the Partial Page Refresh (PPR) capabilities in ADF Faces. You can make the selectInputDate's partialSubmit property "true" and then cause the specific components you wish refreshed have their partialTriggers property set to the ID of the selectInputDate.
    Hope this helps,
    John

  • How to refresh JSP page?

    Hi,
    How can I refresh my JSP Page?
    I am addind and deleting some mrecords with pressing button on my JSP page, but everytime I have to use browser's back button and hit refresh to see the updates.
    How can I just refresh it every time I update the page..
    Your help will be appreciated.
    Thanks

    int i = delete_Customer(delName);
                           System.out.println("i:"+i);
                           if (i==1)
    System.out.println("Sending response");                           
    response.sendRedirect("/abc/CustomerList.jsp");
    int delete_Customer(String delName) {
                   // TODO Auto-generated method stub
                   int i=0;          
                   Statement stmt = null;
                   Connection con = null;
                   try
                        System.out.println("In Try block for Deleting values");
                        Class driverClass = Class.forName("COM.ibm.db2.jdbc.app.DB2Driver");
                        Driver driver = (Driver) driverClass.newInstance();
                        DriverManager.registerDriver(driver);
                        con = DriverManager.getConnection("jdbc:db2:" + DB2Server, DB2UserID, DB2pass);
                        stmt = con.createStatement();
                        System.out.println(delName);
                        String query =
                             "DELETE FROM CUSTOMERNAME WHERE Customer_Name = '" +delName.trim()+ "'";
                             System.out.println("Values Deleted");
                              i = stmt.executeUpdate(query);
                             System.out.println("Nrows="+i);
                        stmt.close();
                        con.close();
                   catch(Exception e)
                        System.out.println("EXCEPTION : "+e.toString());
                        try
                             System.out.println("Severe error in DELETE, unable to continue");
                             if(stmt != null)
                                  stmt.close();
                             if(con != null)
                                  con.close();
                        catch(SQLException se)
                             System.out.println(se.toString());
                   System.out.println("i:"+i);
                   return i;
              }//delete method endsThis is my servlet code.
    It's not throwing any error,
    it's also going to my system log (sending response) but then it doesn't redirect it to the jsp page.
    Thanks

  • Browse-edit pages based on procedures : how to refresh browse page ?

    Hi,
    i have i browse page based on procedure
    to edit record's data i use a separate edit page based on procedure.
    how can i refresh data on browse page when back from edit page?

    yes, no argue , this is a straightforward decision...
    i've created VOs on both procedures, then connected them via VL: master for browse , detail for edit, both are single record views
    does it change anything? any auto-requery, or something without explicit java call?

  • How to refresh the page/table after completion of taskflow in popup

    Hi,
    Scenario:
    In main page, having an emp-table and popup(which contains taskflow as region). In taskflow, iam modifying the emp-table data and after successfully completion of taskflow, want to refresh the emp-table present in the main page. How can we do this...?
    Note:
    (1) In Taskflow last activity is 'taskflow-return', where iam commiting all the data.After this i want to refresh the emp-table,(pop-up closes when it reaches last activity).
    (2) Tried PPR in bean code of main page, it refreshes, but before commiting.
    Something like, Refreshing the entire page either closing/hiding of popup, will help......?
    Regards.

    try with regionNavigationListener:
    public void myRegionNavigationListener(RegionNavigationEvent event) {
          String newViewId = event.getNewViewId();
          if (newViewId == null) { // null new view id indicates the taskflow has ended !
                refreshEmpTableSomehow();
    }As one alternative, take a look at my last message from this thread:
    Re: How to handle the "cancel" button and "close" icon of a popup ?
    Edited by: Cvele_new_account on Oct 5, 2012 12:19 AM

  • How to refresh JSFF page only when page loaded using ADF 11g

    Hi
    I am facing an issue with prepreModel() usage in the .jsff page fragment. I want to invoke executables only when the specific jsff page get's loaded. I tried using 'prepareModel' as a refresh condition, but I can see always executables are getting executed. Does 'prepareModel' behaves differently for .jsff when compared to .jspx ?
    Thanks in Advance

    Hi,
    ADF Regions have a slightly modified lifecycle. However, prepareModel behaves the same. Its marking a specific time in the ADF request lifecycle when the iterators are refreshed. Try prepareModelIfNeeded
    Frank

  • How to refresh full page in Managedbean code:

    I need to refresh the full page using MB method .can anyone provide me the code for this.
    Sailaja

    Hi Sailaja,
    Try this
    http://electrotek.wordpress.com/2008/05/30/refresh-current-jsf-page/
    -Arun

  • How to refresh JSP pages?

    help i cant get my JSP page to refresh..
    it keeps on displaying the old page even if i have edited the old one.
    im using tomcat 6.0 can someone help me please?

    I am not familiar with Tomcat, but for the App Server I have used before.
    You have to remove the generated class file for the updated jsp files.
    All jsp files will be generated as servlet class.
    If there is an update on the file, you have to remove the class file to see the differences.

  • How to refresh an iterator with PPR set to none after task flow operation?

    Using JDev 11.1.2.1.0.
    Doing the sample here: http://www.gebs.ro/blog/oracle/oracle-adf-creating-an-addedit-bounded-task-flow-using-a-new-transaction/
    For this to work, you've got to set your page iterator/executable's ChangeEventPolicy to "none". Otherwise, you can't set the selected row correctly due to the iterator refreshing on commit.
    I'm trying to extend this example to include a Delete operation setup in the task flow. However, I can't figure out how to refresh the page's iterator to display the updated results. The Delete doesn't run in a dialog so it doesn't invoke the calling button's returnListener.
    Any ideas?
    Thanks,
    Will

    Thank you for your response.
    I'm trying to call the delete operation from a task flow. Once the delete occurs, the page should somehow call a refresh on the iterator displayed. However, since the iterator can not have PPR set, the refresh doesn't happen automatically. Additionally, since the delete doesn't happen as part of a dialog window, the returnListener for the calling button does not fire.

Maybe you are looking for

  • Efi update v1.2 mbp stalls, how do I get it to start?

    After migrating all my stuff to my brand new MBP 15" 2013, I got an indication that there is a firmware update. I accept, a warning pops up that MBP will restart, come back with agrey screen and I'm not to use the keyboard until finished. Now 4 hours

  • Documents & Data is missing

    Documents & Data is missing from under iCloud in Settings on iPhone 4S, running iOS 6.

  • Chinese Characters Displaying as Boxes

    My iTunes used to display Chinese characters fine. But today, they all show up as boxes. I originally thought that it was something wrong with Windows, but I'm pretty sure it's an issue with iTunes. I tried to type in Chinese, and it works fine in ot

  • Business object query panel

    hi all, iam new to crystal reports. can u guide me how to create query in business object query panel in crystal reports using two table in universes. Regards. Vijender

  • HAL and Planning 9.3.3

    Hi there We are upgrading from Planning 9.3.1 to 9.3.3 and are using HAL. We load a few different structures now and then, and I would like to know if anyone have had problems using HAL and Planning 9.3.3. HAL will off course be phased out after we u