Dancer support require Books/videos on Dancer
Hi, Please let me know how to build web pages with Dancer. I want to make a web page with select tag of html and on each select it should have to perform action. Happy if you can tell me books or video for the same. Is there any place where i can out my quest/request. Thanks & Regards Mukesh kumar Mob : +91-9967438502
On Fri, 29 Nov 2013 17:25:50 +0530 Mukesh Kumar <mukesh.modi.india@gmail.com> wrote:
Hi,
Please let me know how to build web pages with Dancer.
The documentation and cookbook should help you get started; there's also plenty of help on this mailing list and the IRC channel (http://dancer.pm/irc for details)
I want to make a web page with select tag of html and on each select it should have to perform action.
Depends what action you want to perform (something client side, or a request to the server) but that sounds rather more like a front end Javascript thing. For instance, a random example that might give you a starting point: <select name="foo" onchange="show_choice(this)"> <option value="">Pick your option</option> <option>Foo</option> <option>Bar</option> </select> <script> function show_choice(selectbox) { var picked = selectbox.value; if (picked) { alert("You picked " + picked); } } </script> -- David Precious ("bigpresh") <davidp@preshweb.co.uk> http://www.preshweb.co.uk/ www.preshweb.co.uk/twitter www.preshweb.co.uk/linkedin www.preshweb.co.uk/facebook www.preshweb.co.uk/cpan www.preshweb.co.uk/github
participants (2)
-
David Precious -
Mukesh Kumar