[Solved] Getting to be displyed in the heading tag

I found a few mistakes in your code. You need to use document.body.appendChild(bannerBox); instead of document.appendChild(bannerBox); I ran your code after making this correction http://jsbin.com/zavoyuyife/1/edit and the bannerBox element got added to the body. You can see it in Firebug (firefox) or Chrome inspector. To make it visually appear you need to give proper height … Read more

[Solved] Slideshow in HTML5 [closed]

Php is a programming language not a database. You do not need a database for a slideshow, however you would use php to upload the images as well as list all the images in a directory. Once you accomplish that, you can pass the images to your slideshow. You can probably easily implement this script … Read more

[Solved] Creating first jQuery slideshow plugin, converting from Javascript

You can use nivo slider . You just have to mention description of an image in alt attribute and title of an image in title attribute. And just attach the plugin to your wrapper element: $(window).load(function() { $(‘#main’).nivoSlider(); }); Edit1: A simple way to create such plugin jQuery.fn.imgSlider = function( options ) { // default … Read more