I have a XML RSS feed from a website.content of feed is shown below.
Name model year
Ford. RTT. 2013
Dodge. ABC. 2014
Now I have an another website where I want to display the content in different customized look in HTML. So when ever the feed is updated the content in my page will also be updated. How to achieve this in HTML. website as shown in screen shot below
https://i.sstatic.net/A5AEd.jpg
I have used jquery mobile for this list display. source code for the same
<ul data-role="listview" data-inset="true">
<li><a href="#">
<img src="../_assets/img/album-bb.jpg">
<h2>Broken Bells</h2>
<p>Broken Bells</p></a>
</li>
<li><a href="#">
<img src="../_assets/img/album-hc.jpg">
<h2>Warning</h2>
<p>Hot Chip</p></a>
</li>
<li><a href="#">
<img src="../_assets/img/album-p.jpg">
<h2>Wolfgang Amadeus Phoenix</h2>
<p>Phoenix</p></a>
</li>
</ul>
Now instead of the heading and sub heading and image url and href url i want it dynamic from a xml rss . How do i code for the same.Help me learn
Later what i want to achieve is to when user clicks on any one list the respective details of the car needs to be fetched from rss again and displayed.
I found this w3school link but when i tried to add the same code between .Nothing was displayed. http://www.w3schools.com/xml/tryit.asp?filename=tryxml_display_table