Hi everyone! Is it a way to add python code to js in view? I have autogenerated amount of checkboxes in the view. I need to check the status of each of them via jquery and then pass values for only checked checkboxes to another controller def. So, this is my little piece of code in view^
<script type="text/javascript"> $(document).ready(function() { $("button").click(function(){ var selected_id = []; $.each($("input[name='food']:checked"), function(){ selected_id.push($(this).val()); }); window.location.href='{{=URL('promo3', vars={'ids':_______________})}}'; }); }); </script> How to add all items from local js var "selected_id" to the URL? Maybe there is a better way!?! Thanks... -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to web2py+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.