Last active
December 16, 2015 19:59
-
-
Save mkhuda/5489160 to your computer and use it in GitHub Desktop.
Index for zRSSFeed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<meta name="viewport" content="width=320; user-scalable=no" /> | |
<meta http-equiv="Content-type" content="text/html; charset=utf-8"> | |
<title>RSS Feed Ku</title> | |
<link href="rss/jquery.zrssfeed.css" rel="stylesheet" type="text/css"> | |
<script type="text/javascript" charset="utf-8" src="cordova-1.9.0.js"></script> | |
<script type="text/javascript" charset="utf-8" src="rss/jquery-1.7.2.min"></script> | |
<script type="text/javascript" charset="utf-8" src="rss/jquery.zrssfeed.min.js"></script> | |
<script type="text/javascript" charset="utf-8"> | |
function init() { | |
document.addEventListener("deviceready", onDeviceReady, true); | |
} | |
function onDeviceReady() { | |
//loading rss secara otomatis saat aplikasi dibuka | |
$(document).ready(function () { | |
$('#rss').rssfeed('http://feeds.feedburner.com/mkhudablog'); | |
}); | |
} | |
</script> | |
</head> | |
<body onload="init();" id="stage" class="theme"> | |
<h2>RSS Feed</h2> | |
<div id="rss"> | |
<!-- RSS akan tampil di sini --> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment