Hello I'm new to java and am having trouble making a drop down list that draws the top 10 electronics from an rss feed for amazon using the rss link: http://www.amazon.com/rss/bestsellers/electronics/ref=pd_ts_rss_link. I;m familiar enough with drop down lists to have that part, but have no idea how to add the data for the rss feed. I'm trying to make it dynamic but so far what I have is static.
So far
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<link rel = "stylesheet" type = "text/css" href = "address.css" />
<script type = "text/javascript" src = "json.js"></script>
<script type = "text/javascript">
var webServiceUrl = 'http://www.amazon.com/rss/bestsellers/electronics/ref=pd_ts_rss_link';
</script>
</head>
<body>
<p>
<select id="selTopElectronics">
<option value="http://www.amazon.com/TomTom-4-3-Inch-Portable-Navigator-Bundle/dp/B002SPG2HK/ref=pd_zg_rss_ts_e_electronics_2">#2: TomTom XL 340S 4.3-Inch Portable GPS Navigator Bundle with Case</option>
<option value="http://www.amazon.com/TomTom-4-3-Inch-Portable-Navigator-Bundle/dp/B002SPG2HK/ref=pd_zg_rss_ts_e_electronics_2">#2: TomTom XL 340S 4.3-Inch Portable GPS Navigator Bundle with Case</option>
</select>
<input id="btnViewItem" type="button" value="View item" /></p>
</body>
</html>