JQuery Treeview causes browser crash with certain parameters

Posted by IP on Stack Overflow See other posts from Stack Overflow or by IP
Published on 2010-05-16T20:02:00Z Indexed on 2010/05/16 20:10 UTC
Read the original article Hit count: 300

Filed under:
|

I have the following code, which causes Chrome and Safari to crash (Aw Snap in Chrome)

jQuery(".filetree").treeview({
    animated: "fast",
    collapsed: true,
    unique: true,
    persist: "cookie",
    toggle: function() { }
});

If I change it to this:

jQuery(".filetree").treeview({
    animated: "fast",
    toggle: function() { }
});

It doesn't crash...any ideas?

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about treeview