I'm building an application with no database and with json, I'm using a <ul><li></li></ul>
list to display the items,
What I need is to make some items stand out.
Ex.
Here's a regular list, how I'm displaying
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4 (destaque)</li>
<li>Item 5</li>
<li>Item 6</li>
<li>Item 7(destaque)</li>
<li>Item 8</li>
Here the list I want to show already changed
<li>Item 4 (destaque)</li>
<li>Item 7(destaque)</li>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 5</li>
<li>Item 6</li>
<li>Item 8</li>
I have already researched several filters in Jquery, but none of them meet my needs.