Skip to content

Instantly share code, notes, and snippets.

View msjohncox's full-sized avatar

Marty Johncox msjohncox

View GitHub Profile
@juanbrujo
juanbrujo / getLastRSSFeed.html
Last active March 12, 2020 12:50
Get and display last feed from RSS using JavaScript (jQuery)
<html>
<head></head>
<body>
<div class="noticia">CARGANDO</div>
<script src="https://code.jquery.com/jquery-3.1.0.js"></script>
<script>
$(function(){
var url = 'https://www.domain.co/index.xml';
var news = $('.noticia');