Jquery Mobile Development

Jquery Mobile Development:
jQuery Mobile | jQuery Mobile »
Seriously cross-platform with HTML5. jQuery mobile framework takes the "write less, do more" mantra to the next level: Instead of writing unique apps for each mobile device or OS, the jQuery...

Display UL bullets Right To Left

Align Li Left

  • Western
  • Salsa
  • Jazz
  • Hip-Hop
  • Folk

HTML CODE
<ul>
<li>Western</li>
<li>Salsa</li>
<li>Jazz</li>
<li>Hip-Hop</li>
<li>Folk</li>
</ul>

Align Li Right

  • Western
  • Salsa
  • Jazz
  • Hip-Hop
  • Folk


HTML CODE
<ul dir="rtl">
<li>Western</li>
<li>Salsa</li>
<li>Jazz</li>
<li>Hip-Hop</li>
<li>Folk</li>
</ul>