c4978ef178
Check e.target.type instead of using jQuery. Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Signed-off-by: Galen Charlton <gmc@esilibrary.com>
11 lines
271 B
JavaScript
11 lines
271 B
JavaScript
$(document).ready(function() {
|
|
// We don't want to apply this for the search form
|
|
$("#doc3 form").keypress(function (e) {
|
|
if( e.which == 13
|
|
&& e.target.nodeName == "INPUT"
|
|
&& e.target.type != "submit"
|
|
) {
|
|
return false;
|
|
}
|
|
});
|
|
});
|