jQuery error on pages with no form
-
?nderungsprotokoll
4.9 (2023-02-23)
Hinzugefügt
- Eine Honeypot-Einstellung wurde erg?nzt, um Spam zu bek?mpfen.
jQuery(document).ready(function ($) { // ggf. prüfen ob die Form vorhanden ist. // ohne l?st es bei uns einen jQuery Fehler aus if ($('#onoffice-form').length > 0) { if (honeypot_enabled['honeypotValue'] == true && form['type'] !== 'applicantsearch') { var messageTextarea = $('textarea[name="message"]'); var messageInput = $('input[name="message"]'); if(messageTextarea.val() == ''){ var newInput = $('<textarea>').attr({ 'type': 'text', 'name': 'tmpField', }); messageTextarea.replaceWith(newInput); } else if (messageInput.val() == '') { var newInput = $('<input>').attr({ 'type': 'text', 'name': 'tmpField', }); messageInput.replaceWith(newInput); } var label = $('<label>').text('Message:').attr("class", "message"); var input = $('<input>').attr({ 'type': 'text', 'name': 'message', 'class': 'message' }); $("#onoffice-form").prepend(input); $("#onoffice-form").prepend(label); var originalInput = $('input[name="message"]'); originalInput.before(label, input); } } });
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘jQuery error on pages with no form’ is closed to new replies.