I’m using the filterable portfolio script by new media campaigns ( http://www.newmediacampaigns.com/page/a-jquery-plugin-to-create-an-interactive-filterable-portfolio-like-ours ) which works fine when using normal links in a unordered list. I would like to offer the options in a selectbox though. Could anyone point me in the right direction?
edit: I’d like to use the filter by selecting options from a selectbox like so
<select id="someid">
<option selected value="#All">All</option>
<option value="#Design">Design</option>
<option value="#Political">Political</option>
<option value="#Business">Business</option>
</select>
you do have a
change-event on yourselect. in this handler you need to call the same routine as clicking on the link would!but: raising
change-event is browser-depended. one may call it immediately, others when you blur!combine the idea with filterable docu:
eg