views:

62

answers:

3

I have downloaded a web banner. I want to put it in my project, certainly at the top side. How do I do that?

+1  A: 

using jquery

$("#div_banner").html("<img src=\"test.jpg\" />");
Flakron Bytyqi
A: 

Either make space in an existing table and put it in there, or float it with CSS somehow.

Ignacio Vazquez-Abrams
+3  A: 

I would suggest you look at using images in web pages. There's a good tutorial over at w3schools on how to use image. It's worth a good read. Although this has nothing to do with JQuery.

Good luck.

Helen Neely