Hi Austin, >From looking at your site, it seems that you got it figured out. Do you still need help?
Happy coding, Jeff On Jul 13, 10:28 am, Austin <elkamp...@gmail.com> wrote: > Hi all, > > I'm very new to code and just discovered the Ajax API recently. Love > it, but am having some issues. I've tried copy/pasting just about all > the combinations of code snippet and full code I get from the code > wizard that I can think of, and when I see a change on my WP page, all > it says is "loading." I've tried looking through all of the other > related questions - and haven't been successful with my rookie > experimentations. Can you help? > > I'm trying to embed the following code (just going to paste the entire > html code from the wizard since I'm not sure what's going on) on this > page and it never moves past > "loading":http://austinyoder.com/hat-rack/empower-yourself > > <html xmlns="http://www.w3.org/1999/xhtml"> > <head> > <meta http-equiv="content-type" content="text/html; charset=utf-8"/ > > <title>Dynamic Feed Control</title> > <script src="http://www.google.com/jsapi" type="text/javascript"></ > script> > > <!-- Dynamic Feed Control and Stylesheet --> > <script src="http://www.google.com/uds/solutions/dynamicfeed/ > gfdynamicfeedcontrol.js" > type="text/javascript"></script> > <style type="text/css"> > @import url("http://www.google.com/uds/solutions/dynamicfeed/ > gfdynamicfeedcontrol.css"); > </style> > > <script type="text/javascript"> > /* > * How to use the Dynamic Feed Control, which has pretty UI > already made for you! > * Don't forget to check out the options: > * http://www.google.com/uds/solutions/dynamicfeed/reference.html > */ > > google.load('feeds', '1'); > > function OnLoad() { > var feeds = [ > { > title: 'Travel Resources', > url: 'http://feeds.feedburner.com/Twitter/ > AustinyoderListAustin-travels?format=xml' > }, > { > title: 'Airline Tweets', > url: 'http://feeds.feedburner.com/Twitter/ > AustinyoderListAirlines?format=xml' > } > ]; > > var options = { > stacked : true, > horizontal : false, > title : "Travel Tweets to Empower Yourself" > }; > > new GFdynamicFeedControl(feeds, 'content', options); > document.getElementById('content').style.width = "500px"; > } > > google.setOnLoadCallback(OnLoad); > </script> > </head> > <body style="font-family: Arial, sans-serif;border: 0 none;"> > <div id="content"> > <span style="color:#676767;font-size:11px;margin:10px;padding: > 4px;">Loading...</span> > </div> > </body> > </html> -- You received this message because you are subscribed to the Google Groups "Google AJAX APIs" group. To post to this group, send email to google-ajax-search-...@googlegroups.com. To unsubscribe from this group, send email to google-ajax-search-api+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-ajax-search-api?hl=en.