yui3 - Loading a URL when dropdown option Changes in YUI -
i trying load url when drop down menu changes via yui change event. want navigate url.
i made long search. didn't got way.
thanks :)
<select id="dropdown"> <option value="http://example.com/home">home</option> <option value="http://example.com/about">abount</option> </select> y.one("#dropdown").on("change", function() { //'this' points dropdown node //so it's value value of selected option. assume keep new url there document.location.href = this.get('value'); });
Comments
Post a Comment