Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

How can I reload all tabs in safari

Once upon a time there was an option to reload all tabs in Safari by right-clicking on any tab. That's either gone or hidden. If the latter, can anyone share the secret? Thanks

Posted on Sep 9, 2015 5:10 PM

Reply
24 replies

Dec 19, 2015 4:25 PM in response to rruggles

Thanks rruggles, this was almost exactly what I was looking for. The only difference between your workflow and the behavior of the contextual menu item in the previous versions of Safari is your script reloads every tab of every window, while the Safari item only reloaded every tab of the window you were clicking on. I was able to replicate that with just a couple minor changes to your script.


tell application "Safari"

repeat with j from 1 to the count of every tab in window 1

do JavaScript "window.location.reload()" in (tab j of window 1)

end repeat

end tell


And then by going to System Preferences -> Keyboard -> Shortcuts I was able to add a keyboard shortcut so I can ran the action without having to go to the services menu.

How can I reload all tabs in safari

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.