jQuery show background image only on startpage -


how can display fullscreen, resizing background image startpage. have div in background stretches on full background, resizing on window.load. how can hide div unless current page startpage?

css:

.pagebg {    display: none;    position: absolute;    // set background , other properties } 

html:

<body> <div class="pagebg"> </div> <div> page content </div> 

javascript:

$(function() {    if(isstartpage()) {       $(".pagebg").show();    } }); 

Comments

Popular posts from this blog

How do you change vbulletin's home page to the forums instead of the default (CMS or Activity Stream)? -

c++ - Troubles when compiling phash program -