groups

name language licence
number replace PHP Other
cufon add code Other Other
8 font stacks CSS Other
CSS3 border radius CSS Other
@fontface Other Other
jQuery function Other Other
styles.php Other Other
show load pic while loading page Java Other

< 1 2 3 4 5 6 >



language: Java
licence: Other

show load pic while loading page

options: view full snippetsend to code collector
var largeImg = document.getElementById('large-img');
largeImg.style.display = 'none';
largeImg.onload = function() {
	document.getElementById('loader').style.display = 'none'
	largeImg.style.display = 'block';
}
	
(Continues...)