I’m trying to create a playlist widget using javascript and html, it looks great on chrome, but when I test it in IE it looks static and only one row is displayed. I’m trying to figure this out, but I can’t.
Please help me out.
p.s. this is the first time I do html and javascript 🙂
You forgot to close your
<a>tags using</a>. I added the</a>right after the<img>tag which results in:http://jsfiddle.net/HJsUM/3/
If you want to enclose the whole thing (the image, title and description) inside the
<a>tag then you should change your<a>tag to a block element since you cannot enclose block elements (div and ul) inside inline elements. So the updated fiddle looks like this:http://jsfiddle.net/HJsUM/4/