snappymail/plugins/excel-multirow-maillist-parser/js/parse_excel_list.js
2015-06-02 00:48:19 +01:00

18 lines
No EOL
402 B
JavaScript

$(function () {
//selectors
var inputs = '.popups .inputosaurus-input input[type="text"]:first, \
.popups .cc-row input[type="text"]:first, \
.popups .bcc-row input[type="text"]:first';
//bind function
$(document).on( 'keyup', inputs, function(){
var t = $(this);
var v = t.val();
if( v != "" && v.match(/@/ig).length >= 2 ){
t.val( t.val().replace(/\n| /ig,",") )
}
});
});