/ Published in: jQuery
Select all the elements from list but not the last
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$(document).ready(function(){ $('ul li:not(:last)').append('/'); });