| OLD | NEW |
| (Empty) | |
| 1 <html> |
| 2 <head> |
| 3 <title>Subscribe to feed</title> |
| 4 |
| 5 <script type="text/javascript"> |
| 6 function navigate() { |
| 7 var select = document.getElementById("readers"); |
| 8 // Grab the URL from the querystring, removing question mark at the front. |
| 9 var feed_url = document.location.search.substring(1); |
| 10 var url = select.options[select.selectedIndex].value + feed_url; |
| 11 document.location = url; |
| 12 } |
| 13 </script> |
| 14 </head> |
| 15 |
| 16 <body> |
| 17 <img src="feed-icon-64x64.png" align="absmiddle" /> |
| 18 Subscribe to this feed using: |
| 19 <select id="readers"> |
| 20 <option value="http://www.google.com/reader/view/feed/">Google</option> |
| 21 </select> |
| 22 <button onclick="navigate();">Subscribe Now</button> |
| 23 </body> |
| 24 </html> |
| OLD | NEW |