Hi!
i have a form which onsubmit i return false to cancel the submit action (that works fine). but the problem is that even that the submit action was canceled the value on the text input gets erased from the input somehow...
search_form.onsubmit = submit_listener;
submit_listener = function(e){
console.log(e);
return false;
never had this problem before...