JSFiddle - React, Tailwind, and code Playground

by magizter

HTML

Rendezés:
<select name="sort" id="sort">
  <option value="#" name="http://www.google.com" selected="selected">Alapértelmezett</option>
<option value="#" name="http://www.telia.se">Ár szerint növekvő sorrend</option>
  <option value="#" name="http://www.yahoo.com">Ár szerint csökkenő sorrend</option>
</select>

JavaScript

$('#sort').change(function() {
     window.location = $(':selected',this).attr('name')
});