View Single Post
07-04-2010, 04:25 PM
#5
Fez is offline Fez
Fez's Avatar
Status: Member
Join date: Jun 2010
Location: Saudi Arabia
Expertise: HTML, CSS, Wordpress, jQuery
Software: e-texteditor
 
Posts: 206
iTrader: 2 / 100%
 

Fez is on a distinguished road

Send a message via MSN to Fez

  Old

You can use the noscript tag. Or do what I do, whatever element you are fading in. Set it to display block in your css from the begining and then in your first line of jQuery code use this:

Code:
$(function(){

$('#elementid').css({display: "none"});

//add the animation for it's opacity or it's display or whatever
});

Reply With Quote