can this code affect other submit buttons which are not in the with the id="form_data_voting" ? I assume not, right? And the 3rd line does just affect the code of the with the id #form_data_voting as well, right?
jQuery('body').on('submit', '#form_data_voting', function() {
var formContents = jQuery(this).serializeArray();
var formSource = jQuery(this).find('input[type="submit"]').attr("alt");
I'm facing problems with two plugins in wordpress which are both activated and the submit button of the other plugin does not work correctly...
Thanks!