Create a Jump menu with Niceforms

Development
Create a Jump menu with Niceforms

We’ve been trying out niceforms.js, a javascript api for web forms customization created by Thomas Watson. Thanks to him, forms look much nicer now. ?

You can download it and see an intro on how to use it here: http://www.emblematiq.com/lab/niceforms/

We used it to transform a jump menu that looked like this:

into this:

It is quite easy to use, but my problem started when I wanted to use <select> as a jump menu. The way to do this is to create the select tag and then use the onchange event to navigate to the selected page. Your original select would look something like this:

This works perfectly fine without using niceforms, but the select tag doesn’t look nice at all (the look & feel is browser dependent). To make it look nicer, we used niceforms, but…

Since niceforms hides the original select tag and creates <div>’s to render a nicer select, the select’s onchange event never gets called. Thomas wrote something about this problem, but since we had to dig a bit deeper into the implementation to see how to access the original selection, we are putting our solution here.

In order to call the original onchange event of the select tag, you need to edit the original niceforms.js and replace the line 538:

el.lnk._onclick = el.onclick || function () {};

with this (call the original onchange event when the selected div gets clicked):

el.lnk._onclick = el.onclick || function () { if (this.ref.oldClassName.indexOf(“NFOnChange”) > -1){ this.ref.options[this.pos].selected = “selected”; //Call the original onchange event this.ref.onchange(); }};

After doing this, you need to add the NFOnChange class to your select tag, like this:

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.