jQuery doesn't attach the event handler directly to the element. It uses internal mechanisms for this purpose.
What you can do to debug the code inside the click() function is to enable the *Script* panel <https://getfirebug.com/wiki/index.php/Script_Panel> set a breakpoint at the e.preventDefault(); line and click the #submitSearchFormbutton. The debugger will stop at that line. Then you're able to use step debugging to check what's going on. Sebastian PS: Using <button> tags for buttons offers more flexibility in designing the button contents (independently from the value that will be sent). -- You received this message because you are subscribed to the Google Groups "Firebug" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at https://groups.google.com/forum/#!forum/firebug
