/** * * @package SprintCMSv2_vitalspace.co.uk * @author Jim Tunstall * @copyright Copyright © 2009, Doctor Net Limited * * Newsletter signup * * Validate users data, post to local php script (to sidestep ajax cross domain issues) * and on success display message to user * * :note: break into functions? */ $(document).ready(function() { $.ajax({ url: "/AjaxTwitter/getFeed/int_twitter_id/" + int_twitter_id, async: true, type: "GET", success: function(obj_xml){ var obj_tweets = $(obj_xml).find('response tweet'); var str_html = ''; $.each(obj_tweets, function(i, val) { str_html = str_html + '

' + $('title', val).text() + '

' + $('date', val).text() + '

'; }); $("#tweets").html(str_html); } }); /* $.get("/AjaxTwitter/getFeed/", function(obj_xml){ var obj_tweets = $(obj_xml).find('response tweet'); var str_html = ''; $.each(obj_tweets, function(i, val) { str_html = str_html + '

' + $('title', val).text() + '

' + $('date', val).text() + '

'; }); $("#tweets").html(str_html); }); */ /* $.get("/AjaxTwitter/getFeed/", function(obj_xml){ var obj_tweets = $(obj_xml).find('response tweet'); var str_html = ''; $.each(obj_tweets, function(i, val) { str_html = str_html + '

' + $('title', val).text() + '

' + $('date', val).text() + '

'; }); $("#tweets").html(str_html); }); */ });