Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Just to clarify: Visited your site and found no errors. Opened the console, no error, and everything appeared to function as designed. Tried all provided examples with no error.</p> <p>All examples work fine Safari Version 5.1 (7534.48.3). Sorry, mate – Maybe it's a setting you've changed?</p> <p>Allow me to suggest a possibility:</p> <p>Go to <strong><code>Safari</code>-><code>Empty Cache...</code></strong> Then <strong><code>Safari</code>-><code>Reset Safari...</code></strong> Try reloading the page.</p> <p>Likely, there's something cached that's creating a conflict. <del>There seems to be nothing wrong with your script in the slightest.</del></p> <p><strong>Edit</strong></p> <p>Some things to check...</p> <p>Are any of your function names containing reserved words? I've done this, had it not throw any errors, but it simply wouldn't work.</p> <p>I've had some weird issues with Safari not running methods written as <code>funcName = function(){}</code>. If you can pin down the method that isn't firing (I add a little function when I'm developing called DBG which I'll add below – basically, if a debug flag is set, you log to the console), you can try rewriting the function.</p> <pre><code>// Some sort of boolean flag. var debug = true; // This is kind of an obvious function, but can be expanded as you like. // Little tricks to make life easier. function DBG(str) { debug ? console.log(str) : return; } </code></pre> <p>I still think ultimately this boils down to something caching wrong, but it's worth a try.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload