1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
| function actu() {
window.addEventListener('load', function un() {
$('#txtUrl').val('http://www.site.com/feeds/actu.html');
$('#txtCount').val('5');
$('#chkDate').attr('checked','checked');
$('#chkDesc').attr('checked','checked');
$('#divRss').FeedEk({
FeedUrl : 'http://www.site.com/feeds/actu.html',
MaxCount : 1,
ShowDesc : false,
ShowPubDate: true
});
});
function OpenBox()
{
$('#divSrc').toggle();
}
function changeFeedUrl()
{
var cnt= 5;
var showDate=new Boolean();
showDate=true;
var showDescription=new Boolean();
showDescription=true;
if($('#txtCount').val()!="") cnt=parseInt($('#txtCount').val());
if (! $('#chkDate').attr('checked')) showDate=false;
if (! $('#chkDesc').attr('checked')) showDescription=false;
$('#divRss2').FeedEk({
FeedUrl : $('#txtUrl').val(),
MaxCount : cnt,
ShowDesc : showDescription,
ShowPubDate: showDate
});
}
}
actu(); |
Partager