[jQuery] Re: Firefox 3 - contentEditable

2009-02-22 Thread canarchy
Did you set the designMode to "on"? kevdotbadger wrote: > > Hay all, Firefox 3 as support for contentEditable. This is great and all, > but i have a huge error. > > http://kevin-ruscoe.plesk3.freepgs.com/contenteditable/ > > I cannot run execCommand() on my text, this works in safari and IE6

[jQuery] Re: Timeout/sleep in jQuery?

2009-01-15 Thread canarchy
just had the same problem... here is how i would suggest you fix it. jQuery.noConflict(); jQuery(document).ready( function($) { $("#main-menu ul.menu li") .mouseover( function() { $(this).children("ul").css("display","block"); })