Does anyone know how to insert images into an unordered list using XHTML?
feedback
|
|
This is valid XHTML
| |||||||
feedback
|
|
In case you just need to do it in plain old (X)HTML, you just need to manually create the img element inside the li.
If you need to do it dynamically (ie. when the user clicks something on your web page) you would need some Javascript. This is an example:
This will add a list item containing an image (mypicture.png) to a list (ul) called "my_list". | |||||
feedback
|