I do have a string that contains keywords, like:
$keywords = "shoes, bags, shirts, accessoires"
I want to have created a list of checkboxes out of this string. The checkboxes should show up after loading the page and all checkboxes should be checked, like:
[x] shoes [x] bags [x] shirts [x] accessoires
So user should be able to uncheck some keywords to narrow down search results.
Is this possible with jquery? Thanks,