Tutorial Display Latest FeedBurner Post
This snippet will display the latest post in a specified FeedBurner feed. Just set the URL to your desired FeedBurner feed. $(document).read...
https://iskablogs.blogspot.com/2014/03/tutorial-display-latest-feedburner-post.html
This snippet will display the latest post in a specified FeedBurner feed. Just set the URL to your desired FeedBurner feed.
$(document).ready(function(){
$.ajax({
type: "GET",
url: "http://feeds.feedburner.com/examplefeed",
success: function(data){
$("#date").text($(data).find("item:first>pubDate:first").text());
$(document).ready(function(){
$.ajax({
type: "GET",
url: "http://feeds.feedburner.com/examplefeed",
success: function(data){
$("#date").text($(data).find("item:first>pubDate:first").text());