Changes between Initial Version and Version 1 of Ticket #8777


Ignore:
Timestamp:
Nov 6, 2012, 7:46:43 AM (11 years ago)
Author:
Scott González
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #8777

    • Property Status changed from new to open
    • Property Summary changed from Tabs don't work in Safari to Tabs fail in Safari 5.1 when window.location contains a space
  • Ticket #8777 – Description

    initial v1  
    22I checked it with Safari 5.1.7. It doesn't matter whether to open file locally (from file system) or from a web server.
    33Previous jQuery UI versions worked properly.
    4 
    5 Here is a small sample.
    6 {{{
    7 <!doctype html>
    8 <html lang="en">
    9 <head>
    10     <meta charset="utf-8">
    11     <title>tabs demo</title>
    12     <link rel="stylesheet" href="http://code.jquery.com/ui/1.9.1/themes/base/jquery-ui.css">
    13     <script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.js"></script>
    14     <script type="text/javascript" src="http://code.jquery.com/ui/1.9.1/jquery-ui.js"></script>
    15     <script type="text/javascript">
    16     $(function(){
    17     $("#tabs").tabs();
    18     });
    19     </script>
    20 </head>
    21 <body>
    22             <div id="tabs">
    23                 <ul>
    24                     <li><a href="#c1tabToc">Contents</a></li>
    25                     <li><a href="#c1tabIndex">Index</a></li>
    26                 </ul>
    27                 <div>
    28                     <div id="c1tabToc">Tab 1</div>
    29                     <div id="c1tabIndex">Tab 2</div>
    30                 </div>
    31             </div>
    32 </body>
    33 </html>
    34 }}}