I want a fixed background image like this.
Can this be made with only css without using any jQuery Plugin?
CSS3 way: (ie9+ etc)
html {
background: url(images/bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
jQuery plugin cross-browser way: http://bavotasan.com/2011/full-sizebackground-image-jquery-plugin/