Well, firebug shouldn't have cared as much as IE would, because of a comma inside the list of params in your POST. The last element in an object can't have a comma.
Also, could you post the HTML? On Jul 6, 8:49 am, Mark <johanns.m...@gmail.com> wrote: > I have 3 drop down menu's where is post the value's bij a button.click > (see code below). > But when i push the button i see an error in fire bug > "POST"http://localhost/agendanieuw/handler.php 67ms jquery-1.3.2.js(line > 3633)" > I looked online for awnsers but couldn't find any. Maybe you guys can > help me. Here is my js code. > > <script type="text/javascript" src="jquery-1.3.2.js"></ > script> > <script type="text/ > javascript"> > > $(document).ready(function() { > $("button").click(function() { > $.post('handler.php', { > > jaar:$('#jaar').val(),//jaar means year > maand:$('#maand').val(),//maand means month > week:$('#week').val(), > > }) > }); > }); > </script>