From e1910c1453642bea8ffad32e3e1a4e52f1ecf8eb Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Tue, 28 Jan 2014 17:25:19 +0000 Subject: [PATCH] Towards multiple search forms. Jeez, this is painful. Browser JavaScript must be the world development environment since the batch-processing systems of the early 1970s. Every error is diagnosed by silent no-opping. --- tools/htdocs/mkws.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tools/htdocs/mkws.js b/tools/htdocs/mkws.js index f3473c8..b5dc51d 100644 --- a/tools/htdocs/mkws.js +++ b/tools/htdocs/mkws.js @@ -404,7 +404,14 @@ function _make_mkws_team($, teamName) { // wait until the DOM is ready function domReady () { - document.mkwsSearchForm.onsubmit = onFormSubmitEventHandler; + $('.mkwsSearchForm').each(function (i, obj) { + var node = this; + debug("adding class 'foo' to node " + node); + mkws.handle_node_with_team(node, function(tname) { + $(node).submit(onFormSubmitEventHandler); + }); + }); + document.mkwsSearchForm.mkwsQuery.value = ''; if (document.mkwsSelect) { if (document.mkwsSelect.mkwsSort) -- 1.7.10.4