Skip to content

Instantly share code, notes, and snippets.

@thomasthesecond
Created August 16, 2013 19:39
Show Gist options
  • Save thomasthesecond/6252897 to your computer and use it in GitHub Desktop.
Save thomasthesecond/6252897 to your computer and use it in GitHub Desktop.
onchange event for select elements to change window.location. Good for EE category filtering.
self.changeWindowLocationWithSelect = function()
{
$('.' + classes.selectControllerClass).change(function()
{
if (this.value)
window.location.href = this.value;
else
return false;
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment