id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc,blocking,blockedby
793,1.1b .css() seems to require the element HAS to be in DOM,jonathanfreeman@…,,"HTML:
{{{
<html>
<style>
	a {
		color: #555;
	}
</style>
<script src=""jquery.js"" type=""text/javascript"" ></script>
<script src=""jquery.testing.js"" type=""text/javascript"" /></script>
<script>
$(document).ready(function() 
{
	$(""a.hello"").testing();
	
});
</script>
<body>
	<a href=""#"" class=""hello"">Hello world.</a>
</body>
</html>
}}}

Lib:
{{{
$.fn.testing = function()
{
	var me = $(this).hide('slow'); //works
	var bro = $('#nobody').hide('slow'); //should return null
	var sis = $('#nobody').css('color'); //throws exception
}
}}}
",bug,closed,major,1.1a,core,1.1a,fixed,,,,
