/ Published in: jQuery
Select all the elements from list but not the last
Expand |
Embed | Plain Text
$(document).ready(function(){ $('ul li:not(:last)').append('/'); });
You need to login to post a comment.
Select all the elements from list but not the last
$(document).ready(function(){ $('ul li:not(:last)').append('/'); });
You need to login to post a comment.