jquery - How to add unordered list bullets -


i hosting website in weebly. using javascript display list of items rss feed in unordered list. structure (after javascript loaded).

<div class="rss-box">  <ul class="rss-items">   <li class="rss-item">....</li>   .....  </ul> </ul> 

weebly doesn't support lists loaded using javascript. so, not show bullet. can add bullets using jquery after page loaded (using class)? me.

use css

ul {     list-style: square outside;     margin-left: 20px;     padding-left: 0; } 

Comments

Popular posts from this blog

basic authentication with http post params android -

vb.net - Virtual Keyboard commands -

How to get multiresult with multicondition in Sql Server -