Does anyone know how to insert images into an unordered list using XHTML?

link|improve this question

43% accept rate
You mean dynamically? For that you'd need JavaScript. Be more specific. – Meryovi Feb 16 at 17:20
just using basic XHTML – jlss4e Feb 16 at 17:35
Your question has been answered then. You may also want to read: w3schools.com/tags/tag_img.asp – Meryovi Feb 16 at 17:39
feedback

2 Answers

This is valid XHTML

<ul>
  <li><img src="example.com/images/i.img" alt="ummm"/></li>
</ul>
link|improve this answer
I tried this method, but the picture won't display. – jlss4e Feb 16 at 17:35
Can you post the actual code? – Meryovi Feb 16 at 17:42
You can add an image in a list like that, no prob. You must have something else happening in there. Can you post the ul construct (including the actual url etc. for the image)? – Jayson Lorenzen Feb 16 at 17:44
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.

<ul>
    <li><img src="mypicture.png" alt="some text" /></li>
<ul>

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:

var img = document.createElement('img');
img.scr = 'mypicture.png';
img.alt = 'some text';

var li = document.createElement('li');
li.appendChild(img);

var ul = document.getElementById('my_list');
ul.appendChild(li);

This will add a list item containing an image (mypicture.png) to a list (ul) called "my_list".

link|improve this answer
I have learned javascript yet. If that's the only method of displaying the images then I'll just have to try a different layout. – jlss4e Feb 16 at 17:38
If it's just plain XHTML like you said before (no user interaction), you can do it like I said in the first example. – Meryovi Feb 16 at 17:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.