0
I am building an application without database and with json, I am using a list <ul><li></li></ul>
to display the items,
What I need to do is make a few items stand out.
Ex.
here a normal list, as I am 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 is the list I wish 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’ve searched several filters in Jquery, but none of them meet my need.
The ones that have prominence always appear at the top ? And in what order ? And in what order appear those that have no prominence ?
– Isac
What is the criterion for an IR to be highlighted?
– Sam