Fajax - How to make your Website/Forum "load" faster

Status
Not open for further replies.

Smith

Active Member
1,941
2009
695
0
Very nice method, just try it ;)

Before
Code:
</head>

Add
Code:
<meta http-equiv="Page-Exit" content="BlendTrans(Duration=0.2)" />
<meta http-equiv="Page-Enter" content="BlendTrans(Duration=0.2)" />
 
5 comments
Jquery <3
first load jquery :P


PHP:
<script type="text/javascript">
$(document).ready(function(){ 
// change 1500 to desired time in micro seconds   
    $('#fade_this').fadeIn(1500);
});

</script>


PHP:
<div id="fade_this">
<!-- put the content  --> 
</div>
 
Status
Not open for further replies.
Back
Top