Skip to content

Commit

Permalink
v3.0 update
Browse files Browse the repository at this point in the history
  • Loading branch information
enginkizil committed Dec 3, 2015
1 parent 779eacd commit cfc40b5
Showing 1 changed file with 30 additions and 30 deletions.
60 changes: 30 additions & 30 deletions FeedEk_demo.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,98 +11,98 @@
<script type="text/javascript">
$(document).ready(function () {
$('#divRss').FeedEk({
FeedUrl: 'http://rss.cnn.com/rss/edition.rss',
FeedUrl: 'http://jquery-plugins.net/rss',
MaxCount: 3
});

$('#divRss2').FeedEk({
FeedUrl: 'http://rss.cnn.com/rss/edition.rss',
FeedUrl: 'http://jquery-plugins.net/rss',
MaxCount: 4,
ShowDesc: true,
ShowPubDate: false,
DescCharacterLimit: 100
});

$('#divRss3').FeedEk({
FeedUrl: 'http://rss.cnn.com/rss/edition.rss',
FeedUrl: 'http://jquery-plugins.net/rss',
MaxCount: 5,
ShowDesc: false
});

$('#divRss4').FeedEk({
FeedUrl: 'http://rss.cnn.com/rss/edition.rss',
FeedUrl: 'http://jquery-plugins.net/rss',
MaxCount: 2,
DateFormat: 'L',
DateFormatLang: 'en'
});

$('#divRss5').FeedEk({
FeedUrl: 'http://rss.cnn.com/rss/edition.rss',
FeedUrl: 'http://jquery-plugins.net/rss',
MaxCount: 2,
DateFormat: 'L',
DateFormatLang: 'tr'
});

$('#divRss6').FeedEk({
FeedUrl: 'http://rss.cnn.com/rss/edition.rss',
FeedUrl: 'http://jquery-plugins.net/rss',
MaxCount: 2,
DateFormat: 'L',
DateFormatLang: 'en-gb'
});

$('#divRss7').FeedEk({
FeedUrl: 'http://rss.cnn.com/rss/edition.rss',
FeedUrl: 'http://jquery-plugins.net/rss',
MaxCount: 2,
DateFormat: 'LL',
DateFormatLang: 'en'
});

$('#divRss8').FeedEk({
FeedUrl: 'http://rss.cnn.com/rss/edition.rss',
FeedUrl: 'http://jquery-plugins.net/rss',
MaxCount: 2,
DateFormat: 'LLL',
DateFormatLang: 'en'
});

$('#divRss9').FeedEk({
FeedUrl: 'http://rss.cnn.com/rss/edition.rss',
FeedUrl: 'http://jquery-plugins.net/rss',
MaxCount: 2,
DateFormat: 'll',
DateFormatLang: 'en'
});
$('#divRss10').FeedEk({
FeedUrl: 'http://rss.cnn.com/rss/edition.rss',
FeedUrl: 'http://jquery-plugins.net/rss',
MaxCount: 2,
DateFormat: 'lll',
DateFormatLang: 'en'
});

$('#divRss11').FeedEk({
FeedUrl: 'http://rss.cnn.com/rss/edition.rss',
FeedUrl: 'http://jquery-plugins.net/rss',
MaxCount: 2,
DateFormat: 'DD MMMM YYYY',
DateFormatLang: 'en'
});
$('#divRss12').FeedEk({
FeedUrl: 'http://rss.cnn.com/rss/edition.rss',
FeedUrl: 'http://jquery-plugins.net/rss',
MaxCount: 2,
DateFormat: 'MM/DD/YYYY'
});

$('#divRss13').FeedEk({
FeedUrl: 'http://rss.cnn.com/rss/edition.rss',
FeedUrl: 'http://jquery-plugins.net/rss',
MaxCount: 2,
DateFormat: 'MM/DD/YYYY HH:mm'
});

$('#divRss14').FeedEk({
FeedUrl: 'http://rss.cnn.com/rss/edition.rss',
FeedUrl: 'http://jquery-plugins.net/rss',
MaxCount: 2,
DateFormat: 'MM-DD-YYYY'
});

$('#divRss15').FeedEk({
FeedUrl: 'http://rss.cnn.com/rss/edition.rss',
FeedUrl: 'http://jquery-plugins.net/rss',
MaxCount: 2,
DateFormat: 'MM-DD-YYYY HH:mm'
});
Expand All @@ -127,7 +127,7 @@ <h1>FeedEk Examples</h1>
<strong>Code</strong>
<pre class="prettyprint">
$('#divRss').FeedEk({
FeedUrl: 'http://rss.cnn.com/rss/edition.rss',
FeedUrl: 'http://jquery-plugins.net/rss',
MaxCount: 2
});
</pre>
Expand All @@ -141,7 +141,7 @@ <h1>FeedEk Examples</h1>
<strong>Code</strong>
<pre class="prettyprint">
$('#divRss').FeedEk({
FeedUrl: 'http://rss.cnn.com/rss/edition.rss',
FeedUrl: 'http://jquery-plugins.net/rss',
MaxCount: 3,
ShowDesc: true,
ShowPubDate: false,
Expand All @@ -158,7 +158,7 @@ <h1>FeedEk Examples</h1>
<strong>Code</strong>
<pre class="prettyprint">
$('#divRss').FeedEk({
FeedUrl: 'http://rss.cnn.com/rss/edition.rss',
FeedUrl: 'http://jquery-plugins.net/rss',
MaxCount: 4,
ShowDesc: false
});
Expand All @@ -177,7 +177,7 @@ <h2>Examples with date format</h2>
<strong>Code</strong>
<pre class="prettyprint">
$('#divRss').FeedEk({
FeedUrl: 'http://rss.cnn.com/rss/edition.rss',
FeedUrl: 'http://jquery-plugins.net/rss',
MaxCount: 2,
DateFormat: 'L',
DateFormatLang:'en'
Expand All @@ -190,7 +190,7 @@ <h2>Examples with date format</h2>
<strong>Code</strong>
<pre class="prettyprint">
$('#divRss').FeedEk({
FeedUrl: 'http://rss.cnn.com/rss/edition.rss',
FeedUrl: 'http://jquery-plugins.net/rss',
MaxCount: 2,
DateFormat: 'L',
DateFormatLang:'tr'
Expand All @@ -203,7 +203,7 @@ <h2>Examples with date format</h2>
<strong>Code</strong>
<pre class="prettyprint">
$('#divRss').FeedEk({
FeedUrl: 'http://rss.cnn.com/rss/edition.rss',
FeedUrl: 'http://jquery-plugins.net/rss',
MaxCount: 2,
DateFormat: 'L',
DateFormatLang:'en-gb'
Expand All @@ -220,7 +220,7 @@ <h2>Examples with date format</h2>
<strong>Code</strong>
<pre class="prettyprint">
$('#divRss').FeedEk({
FeedUrl: 'http://rss.cnn.com/rss/edition.rss',
FeedUrl: 'http://jquery-plugins.net/rss',
MaxCount: 2,
DateFormat: 'LL',
DateFormatLang:'en'
Expand All @@ -233,7 +233,7 @@ <h2>Examples with date format</h2>
<strong>Code</strong>
<pre class="prettyprint">
$('#divRss').FeedEk({
FeedUrl: 'http://rss.cnn.com/rss/edition.rss',
FeedUrl: 'http://jquery-plugins.net/rss',
MaxCount: 2,
DateFormat: 'LLL',
DateFormatLang:'en'
Expand All @@ -246,7 +246,7 @@ <h2>Examples with date format</h2>
<strong>Code</strong>
<pre class="prettyprint">
$('#divRss').FeedEk({
FeedUrl: 'http://rss.cnn.com/rss/edition.rss',
FeedUrl: 'http://jquery-plugins.net/rss',
MaxCount: 2,
DateFormat: 'll',
DateFormatLang:'en'
Expand All @@ -263,7 +263,7 @@ <h2>Examples with date format</h2>
<strong>Code</strong>
<pre class="prettyprint">
$('#divRss').FeedEk({
FeedUrl: 'http://rss.cnn.com/rss/edition.rss',
FeedUrl: 'http://jquery-plugins.net/rss',
MaxCount: 2,
DateFormat: 'lll',
DateFormatLang:'en'
Expand All @@ -276,7 +276,7 @@ <h2>Examples with date format</h2>
<strong>Code</strong>
<pre class="prettyprint">
$('#divRss').FeedEk({
FeedUrl: 'http://rss.cnn.com/rss/edition.rss',
FeedUrl: 'http://jquery-plugins.net/rss',
MaxCount: 2,
DateFormat: 'DD MMMM YYYY',
DateFormatLang: 'en'
Expand All @@ -289,7 +289,7 @@ <h2>Examples with date format</h2>
<strong>Code</strong>
<pre class="prettyprint">
$('#divRss').FeedEk({
FeedUrl: 'http://rss.cnn.com/rss/edition.rss',
FeedUrl: 'http://jquery-plugins.net/rss',
MaxCount: 2,
DateFormat: 'MM/DD/YYYY'
});
Expand All @@ -305,7 +305,7 @@ <h2>Examples with date format</h2>
<strong>Code</strong>
<pre class="prettyprint">
$('#divRss').FeedEk({
FeedUrl: 'http://rss.cnn.com/rss/edition.rss',
FeedUrl: 'http://jquery-plugins.net/rss',
MaxCount: 2,
DateFormat: 'MM/DD/YYYY HH:mm'
});
Expand All @@ -317,7 +317,7 @@ <h2>Examples with date format</h2>
<strong>Code</strong>
<pre class="prettyprint">
$('#divRss').FeedEk({
FeedUrl: 'http://rss.cnn.com/rss/edition.rss',
FeedUrl: 'http://jquery-plugins.net/rss',
MaxCount: 2,
DateFormat: 'MM-DD-YYYY'
});
Expand All @@ -329,7 +329,7 @@ <h2>Examples with date format</h2>
<strong>Code</strong>
<pre class="prettyprint">
$('#divRss').FeedEk({
FeedUrl: 'http://rss.cnn.com/rss/edition.rss',
FeedUrl: 'http://jquery-plugins.net/rss',
MaxCount: 2,
DateFormat: 'MM-DD-YYYY HH:mm'
});
Expand Down

0 comments on commit cfc40b5

Please sign in to comment.