samedi 16 juillet 2016

How to link news feed heading to news posted page ?

Below i attached the news feed script, i can gets feeds from that page. But i can not link the news heading to news posted page... please help me to do this.

var html = '';
     $(document).ready(function() {
     $.get('http://sxp.microsoft.com/feeds/3.0?tags=msit', function (data) {
     $(data).find("item").each(function () {
     var el = $(this);
     html +='<li>';
     html += '<h3>'+ el.find('title').text()+ '</h3>';
     html += '<img src='+ el.find('image').text()+'>'+'</br>';
     html += '' + el.find("description").text()+'</span>';
     html +='</li>';
  });
  $("#get_feeds").html(html);
});

Aucun commentaire:

Enregistrer un commentaire