[jQuery] How to Reflect Value Changes in Minimalect

Tadashi Shigeoka ·  Wed, October 16, 2013

Memo on how to reflect value changes in the jQuery library “Minimalect” that displays form select elements beautifully.

$("#myselect").val("newvalue").change();

With .val() alone, the value is set but the display doesn’t change, so it seems you need to inform it of the change with .change().


Reference Information

Minimalect by groenroos

That’s all from the Gemba.