Thanks for the Safari trailing comma tip, definitely just saved me a  
few days debugging something :-)

Should be in a FAQ somewhere.  It would be helpful to expand the Wiki  
here (http://docs.jquery.com/Browser_compatibility) w/ some small tips.

- Jon

On Jan 18, 2007, at 1:25 AM, Ⓙⓐⓚⓔ wrote:

> I'm not the person to ask about IE...IE makes me sneeze!
>
> I was wondering about trailing commas the other day... It caught my
> eye, and sure enough safari doesn't like 'em!
>
> do you have the debug menu turned on in Safari? in terminal
>       defaults write com.apple.Safari IncludeDebugMenu 1
> it sure ain't firebug... but it helps!
>
> On 1/17/07, Kenneth Love <[EMAIL PROTECTED]> wrote:
>> Jake:
>>
>> Thanks a lot, that worked great for Safari. Everything is now  
>> hidden in IE,
>> though, and clicking doesn't show it. Any ideas there?
>>
>>
>> On 1/17/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
>>> all the words look good, but that trailing comma!!!! I noticed a  
>>> while
>>> back that firefox permits it...  safari doesn't like it.
>>>
>>> On 1/17/07, Kenneth Love <[EMAIL PROTECTED]> wrote:
>>>> Hey all.
>>>>
>>>> I have a bit of JQuery magic that works great in Firefox, but  
>>>> not in
>> Safari
>>>> or IE at all. Here's the code:
>>>>
>>>> $(document).ready(
>>>>     function()
>>>>     {
>>>>         $('div.yui-u').Sortable({
>>>>             accept: 'sortable',
>>>>             helperclass: 'sortHelper',
>>>>             activeclass :     'sortableactive',
>>>>             hoverclass :     'sortablehover',
>>>>             handle: ' h3.list',
>>>>             tolerance: 'pointer',
>>>>         });
>>>>
>>>>         $('h3.list').title('Click to expand; drag to reorganize')
>>>>         $('dl').hide();
>>>>         $('dd').hide();
>>>>         $(' h3.list').click(function() {
>>>>             $(this.parentNode).find('dl').toggle('fast');
>>>>             $(this).toggleClass('listDown');
>>>>             return false;
>>>>         });
>>>>         $('li dl dt').click(function() {
>>>>             $(this.parentNode).find('dd').toggle('fast');
>>>>         });
>>>>     }
>>>> );
>>>>
>>>>
>>>> You can see it in action at
>>>> http://www.eyeheartzombies.com/webpen-html/ Any ideas?
>>>>
>>>> Thanks a lot.
>>>>
>>>> --
>>>> => the blog from beyond <=
>>>> => www.eyeheartzombies.com <=
>>>> _______________________________________________
>>>> jQuery mailing list
>>>> [email protected]
>>>> http://jquery.com/discuss/
>>>>
>>>>
>>>>
>>>
>>>
>>> --
>>> Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
>>> _______________________________________________
>>> jQuery mailing list
>>> [email protected]
>>> http://jquery.com/discuss/
>>>
>>
>>
>>
>> --
>> => the blog from beyond <=
>>  => www.eyeheartzombies.com <=
>> _______________________________________________
>> jQuery mailing list
>> [email protected]
>> http://jquery.com/discuss/
>>
>>
>>
>
>
> -- 
> Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
> _______________________________________________
> jQuery mailing list
> [email protected]
> http://jquery.com/discuss/


_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to