I\'m trying to move the form up a few pixels and this doesn\'t work. I don\'t know why.
The function is being called when I submit (I have tested it with an alert()), bu
Can you try adding position: relative; also
position: relative;
$("#formulario").submit(function (event) { $(this).css({ position: "relative", top: "-50px" }); });