Select all items of a list component
Hi, I have a list component that pulls content from the database and I'm currently using the following code to perform an action of ONLY the one list item that is selected by the user:
codevar li = jQuery(this).closest("li");/code
My question is, is there a way I can modify the code to perform the action on EVERY list items in the list, instead of only the one selected?
Thanks!