How to fetch RSS Feeds using jQuery script

How to fetch RSS Feeds using jQuery script

Hi, I am using google ajax api to fetch RSS feed data I am using code something like below,
$.ajax({
url      : document.location.protocol + '//ajax.googleapis.com/ajax/services/feed/load?v=1.0&num=|&callback=?&q=' + encodeURIComponent(url),
dataType : 'json',
success  : function (data) {}
});
but google stopped this feed service. How can I get the RSS feed with Jquery or suggest some example that will help me alot
Thanks in advance