Feedjit |
Feedjit |
Lalu bagaimana cara mengaplikasikan trik ini?
Ikuti langkah singkat berikut ini.
1. Saya asumsikan anda telah mempunyai widget feedjitnya, jika belum silahkan ikuti langkah pembuatan feedjit disini.
2. Seperti biasa masuk ke bagian desain, page elements, dan cari gadget feedjit dimana anda meletakannya.
3. Jika sudah ketemu kemudian klik dan tambahkan kode berikut ini mengapit kode feedjit anda.
seperti ini contohnya:
<div id="visitors">
KODE FEEDJIT ANDA
<script type="text/javascript">
var loop = 100 ;
function checkIframeLoading() {
// Get a handle to the iframe element
var iframe = window.frames['FJIframe'];
// Check if loading is complete
if (iframe) {
if ( iframe.document.readyState == 'complete' ) {
var table = iframe.document.getElementById('FJ_TList') ;
if (table) {
// The loading is complete, call the function we want executed once the iframe is loaded
hideFeedjit();
return;
}
}
}
// If we are here, it is not loaded. Set things up so we check the status again in 100 milliseconds.
loop = loop - 1 ;
if (loop > 0) {
window.setTimeout('checkIframeLoading();', 100);
}
}
checkIframeLoading();
</script>
<script type="text/javascript">
function hideFeedjit() {
var iframe = window.frames['FJIframe'];
var table = iframe.document.getElementById('FJ_TList') ;
var div = document.getElementById('visitors') ;
var th1 = table.offsetHeight ;
var dh1 = div.offsetHeight ;
table.rows[0].style.display = 'none' ;
table.rows[1].style.display = 'none' ;
table.rows[table.rows.length-1].style.display = 'none' ;
table.rows[table.rows.length-2].style.display = 'none' ;
var th2 = table.offsetHeight ;
var dh2 = dh1 - (th1-th2) ;
div.style.height = dh2+'px' ;
}
</script>
</div>
4. Kemudian simpan perubahan
Dan selesai...
Semoga trik sederhana ini bermanfaat..
Happy blogging kawan
Regards!