While I have been hiding content using display:none;
in css, there are concerns that Google may not like this approach. However, due to the needs of jQuery animations, it has been necessary for me. Recently, I have come across a new method for hiding content with Javascript/jQuery.
$(this).css({display:'none'});
I am now wondering if this method is more favourable than using display:none;
. Will Google view this as being more friendly? Check out this fiddle to see it in action.