Tagged Questions

Safari is Apple's web browser, the default browser on Mac OS X and iOS and also available for Windows.

learn more… | top users | synonyms

60
votes
20answers
86k views

Get real image width and height with JavaScript in Safari/Chrome?

I am creating a jQuery plugin. How do I get real image width and height with Javascript in Safari? Following works with Firefox 3, IE7 and Opera 9: var pic = $("img") // need to remove these in of ...
47
votes
12answers
20k views

How to disable phone number linking in Mobile Safari?

Safari on iPhone automatically creates links for strings of digits that appear to the telephone numbers. I am writing a web page containing an IP address, and Safari is turning that into a phone ...
46
votes
3answers
22k views

How do I disable the highlight border on an html input text element

<input type="text" name="user" class="middle" id="user" tabindex="1" /> Basic text input in html, when you tab or focus into it, Safari will put a blurry blue border around it. For the layout ...
46
votes
14answers
53k views

Debug message “Resource interpreted as other but transferred with MIME type application/javascript”

OK, I understand what the messages means, but I'm really not sure what's causing it. I'm using Safari and the Web Inspector on Mac OS X, by the way. I've got the following in my document head: ...
45
votes
12answers
43k views

Copy / Put text on the clipboard with FireFox, Safari and Chrome

In Internet Explorer I can use the clipboardData object to access the clipboard. How can I do that in FireFox, Safari and/or Chrome?
40
votes
5answers
13k views

Where is the console API for WebKit/Safari?

WebKit/Safari supports the console object, which is similar to what Firebug does. But what exactly is supported? There is a console documentation for Firebug, but where can I find the console ...
35
votes
6answers
10k views

iPad Web App: Detect Virtual Keyboard Using JavaScript in Safari?

I'm writing a web app for the iPad (not a regular App Store app - it's written using HTML, CSS and JavaScript). Since the keyboard fills up a huge part of the screen, it would make sense to change the ...
35
votes
10answers
54k views

Programmatically open new pages on Tabs

I'm trying to "force" Safari or IE7 to open a new page using a new tab. Programmatically I mean something like: window.open('page.html','newtaborsomething');
34
votes
8answers
11k views

How to enable Safari Reader on my website?

How does Safari Reader work in Apple Safari 5? How do I enable Safari Reader on my site. How do I tell it what content on my page is an article to trigger this function?
33
votes
4answers
963 views

How to find the background-position / background-image etc for multiple backgrounds using jQuery in Safari

Maybe I'm missing something here. I'm trying to get the current background info for an element (div) with multiple backgrounds, set using the longhand background-repeat, background-position and ...
29
votes
2answers
15k views

Hiding textarea resize handle in Safari

I'm using textarea components in my application, and I control their height dynamically. As the user types, the height is increased whenever there is enough text. This works fine on IE, Firefox, and ...
26
votes
3answers
15k views

launch safari from iphone app

This might be a rather obvious question, but can you launch the Safari browser from an iphone app? all the best.
24
votes
1answer
166 views

Safari Extension : How to add menu and sub menu on bars?

Here I am working with safari extension development. I have successfully get developer certificate on safari browser. Here I am able to create menu and sub menu on toolbar item but as per my project ...
23
votes
6answers
7k views

iPhone Safari Web App opens links in new window

I have problem with web after adding icon to Home Screen. If the web is launched from Home Screen, all links will open in new window in Safari (and lose full screen functionality). How can I prevent ...
22
votes
2answers
5k views

Is “localStorage” in Firefox only working when the page is online?

So i'm toying around with HTML 5 and the localStorage and i'm noticing that my values only get stored when i run the page in Firefox on the local host (i.e. http://127.0.0.1:8000/test/index.html) when ...
22
votes
3answers
24k views

Unsafe JavaScript attempt to access frame warning in Safari

I'm using Facebook Connect in my app. I have it working pretty well, but in the Safari Error console, I'm seeing errors like this: Unsafe JavaScript attempt to access frame with URL http://...#... ...
21
votes
9answers
45k views

jQuery .load() call doesn't execute javascript in loaded html file

This seems to be a problem related to Safari only. I've tried 4 on mac and 3 on windows and am still having no luck. What I'm trying to do is load an external html file and have the Javascript that ...
19
votes
6answers
33k views

HTML5 video (mp4 and ogv) problems in Safari and Firefox - but Chrome is all good

I have the following code: <video width="640" height="360" controls id="video-player" poster="/movies/poster.png"> <source src="/movies/640x360.m4v" type='video/mp4; codecs="avc1.42E01E, ...
19
votes
2answers
8k views

Selecting text on focus using jQuery not working in Safari and Chrome

I have the following jQuery code (similar to this question) that works in Firefox and IE, but fails (no errors, just doesn't work) in Chrome and Safari. Any ideas for a workaround? ...
17
votes
3answers
6k views

Is there a way to enable the JavaScript Error/Debug Console for Safari within Android?

I'm developing a JavaScript application that needs to run on the Google Android Phone OS. Is there a way to enable the JavaScript Error/Debug console within Safari on either the Android Emulator or ...
17
votes
8answers
6k views

The Safari Back Button Problem

I do some minor programming and web work for a local community college. Work that includes maintaining a very large and soul destroying website that consists of a hodge podge of VBScript, javascript, ...
15
votes
5answers
331 views

Do I still need to test rendering in both Chrome and Safari if they both use Webkit?

Is it necessary to test the rendering of my website in both Chrome and Safari despite the fact that both browsers implement the Webkit rendering engine underneath? Is this a cop out by developers or ...
15
votes
6answers
12k views

What are all the special iPhone / iPod Touch HTML tags?

After peeking at the SO source, I noticed this tag: <link rel="apple-itouch-icon" href="/apple-touch-icon.png" /> Which after a quick Google revealed an Apple "favicon" type thing for display ...
14
votes
6answers
987 views

Clicking Safari 5.1 select menu refreshes page

This is both a question and an answer. I encountered a bug today that I've never seen in all my years as a web developer, so I wanted to share the fix with anyone who might encounter the issue in the ...
14
votes
2answers
941 views

HTML 5 / QuickTime audio caching in Safari on iOS

I'm desperatly trying to find a solution for a web application that has to run on an iOS-Safari (e.g. on iPad, iPad2 and iPhone 4): It's a web application I wrote some time ago which lets the user ...
14
votes
5answers
3k views

How to disable Safari Reader in a web page

I'm curious to know more about what triggers the Reader option in Safari and what does not. I wouldn't plan to implement anything that would disable it, but curious as a technical exercise. Here is ...
14
votes
15answers
30k views

Safari/Chrome (Webkit) - Cannot hide iframe vertical scrollbar

I have an iframe on www.mydomain.com that points to support.mydomain.com (which is a CNAME to a foreign domain). I automatically resize the height of my iframe so that the frame will not need any ...
14
votes
5answers
3k views

I think I found a bug in WebKit (or jQuery), can others confirm? [closed]

I believe I have found a bug in WebKit. It involves outerWidth(true) (and I assume outerHeight(true) ) in jQuery. In every browser but Safari and Chrome, the third box is 200. In Safari and Chrome, ...
14
votes
4answers
826 views

Is it possible to tell Safari to repeat a table header on printed pages?

Is it possible to repeat table headers in Safari on every printed page? This code works in Firefox but not in Safari: <table> <thead> <tr> <td>Header1</td> ...
14
votes
10answers
2k views

Does Google Chrome display pages the same as Safari?

Given that Chrome and Safari use webkit has anyone yet found anything that renders differently on Chrome than Safari? Is there any reason at the moment to test sites on both, or would testing Safari ...
13
votes
6answers
292 views

Redirecting to FTP URL with username and password in Safari

I've got a problem with Safari I haven't been able to solve: <?php header("Location: ftp://username:password@somedomain.org/somefile.zip"); ?> This code-snippet works in every browser ...
13
votes
12answers
14k views

jQuery scrollTop() doesn't seem to work in Safari or Chrome (Windows)

I've got a simple setup to allow a "help"-style window to be loaded and scrolled to a particular point on the page. More or less the code looks like this: var target = /* code */; ...
13
votes
7answers
7k views

Scrollbar problem with jQuery UI dialog in Chrome and Safari

I'm using the jQuery UI dialog with modal=true. In Chrome and Safari, this disables scrolling via the scroll bar and cursor keys (scrolling with the mouse wheel and page up/down still works). This is ...
13
votes
2answers
9k views

iPhone web applications and specific input types

I remember seeing a tutorial a while back on this but am unable to re-Google it. Supposedly there is a way to get Safari on the iPhone to give keyboards other than the default. It went something ...
13
votes
10answers
6k views

Differences between Safari for Windows and Safari for Mac

What are the differences from a developer point of view between Safari for Mac and Safari for Windows? I think it boils down to evaluate differences between (if I missed something, please correct): - ...
13
votes
5answers
12k views

What Safari-specific pure CSS hacks are out there?

I'm wondering if there's any way to write CSS specifically for Safari using only CSS. I know there has to be something out there, but I haven't found it yet.
13
votes
8answers
10k views

Best way to write a Safari 4 Extension [obsolete]

What is the best way to write a Safari extension? I've written a couple XUL extensions for Firefox, and now I'd like to write versions of them for Safari. Is there a way that would allow you to add ...
12
votes
1answer
653 views

Workaround for history animation in Safari for OS X Lion?

In Safari for OS X Lion, when you use the swipe gesture to navigate forward or backward in history, the window animates as though you were moving through physical pages. The problem with this ...
12
votes
2answers
1k views

Techniques for profiling memory in Safari desktop and iOS?

Updated 10/21: Changed title and question in order to possibly get an answer (other than "no"). We're experiencing leaks in Safari (confirmed in Windows and Mac, suspected in iOS). Are there any ...
12
votes
16answers
13k views

List of known “Safari on iPad” differences over “Desktop Safari”

In recently testing a web application on Windows/Mac desktop browsers - and then on an iPad I noticed various differences in Safari that I wasn't expecting. even though the version # is the same. I'd ...
12
votes
4answers
4k views

HTML5 <audio> Safari live broadcast vs not

I'm attempting to embed an HTML5 audio element pointing to MP3 or OGG data served by a PHP file . When I view the page in Safari, the controls appear, but the UI says "Live Broadcast." When I click ...
11
votes
4answers
1k views

Use Javascript to get selected text in Mobile Safari

So I'm working on a bookmarklet where it would be ideal for me to grab the content selected by the user using the "loop". Both window.getSelection and document.getSelection are functions that I can ...
11
votes
8answers
16k views

iPhone Safari does not auto scale back down on portrait->landscape->portrait

I have a very simple HTML page with this META tag for the iPhone: <meta name="viewport" content="height=device-height,width=device-width,initial-scale=1.0,user-scalable=no" /> Using the ...
11
votes
4answers
9k views

How do I set cookies from outside domains inside iframes in Safari?

From the Apple developer faq Safari ships with a conservative cookie policy which limits cookie writes to only the pages chosen ("navigated to") by the user. By default Safari only allows ...
10
votes
3answers
187 views

Drag & Drop on Safari iOS: Wont drag, wont respond to drop on desktop/iPad

I am coding a webpage to be viewed on iPad. It uses Safaris/Webkits drag & drop. I have exactly copied Safari's example drag & drop code but it wont work. My Problem: The ondrop event is ...
10
votes
2answers
182 views

Any way to prevent horizontal scrolling triggering swipe back gesture on OS X Lion Safari?

I am working on a UI that uses horizontal scrolling in a div element (using overflow: scroll). I cannot scroll to the left, because it would start the animation for going back in history. Likewise, I ...
10
votes
3answers
344 views

Is the “iframe sandbox” technique safe?

Update: Since this is unanswered, I'm changing the question slightly. Comments on the post on Dean's blog linked below indicate this technique does not work in Safari. My question now is: does the ...
10
votes
2answers
5k views

What is the iOS 5 user-agent string?

What is the iOS 5.0 user-agent string? From this SO question: what-is-the-iphone-4-user-agent, I assume it is something similar, but need confirmation.
10
votes
8answers
338 views

Why would html text sometimes appear garbled when viewing on Chrome or Safari on Windows?

Occasionally users report that the text on https://squareup.com looks like gibberish (or garbled) to them… however we’ve been unable to reproduce this. Users report to be using either Chrome or ...
10
votes
1answer
2k views

iPhone Mobile Safari: Force keyboard open

This is an HTML / CSS / JS (jQuery) iPad app. I've got a button, that slides down an input form. I'd like to focus the user on the input, and then launch the keyboard. This is what I'm working with, ...

1 2 3 4 5 54