Safari vs jQuery hide()

Safari vs jQuery hide()


I don't know if you guys are aware, but there seems to be a bug when
using the hide() method in Safari, but only on page load. So
something like this:
$(function(){
$("#myId").hide();
});
doesn't work, but if I do:
$(function(){
$("#myTextBox").css("display", "none");
});
it works fine. Weird thing is that something like this works as
expected:
$(function(){
$("myButton").click(function(){
$(#myTextBox").hide();
});
});