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

django - How can I change user group without delete record -

java - Need to add SOAP security token -

java - EclipseLink JPA Object is not a known entity type -