mirror of
https://github.com/frontendnetwork/vegancheck.me
synced 2024-11-12 23:37:06 +00:00
20 lines
No EOL
421 B
JavaScript
20 lines
No EOL
421 B
JavaScript
/**
|
|
* @author Philip Brembeck
|
|
* @version 0.0.1
|
|
*/
|
|
|
|
$('button[name="submit"]').on('click', function(e) {
|
|
e.preventDefault();
|
|
|
|
$.ajax({
|
|
url: 'script.php',
|
|
type: 'POST',
|
|
data: {
|
|
barcode: $('input[name="barcode"]').val(),
|
|
lang: $('input[name="lang"]').val()
|
|
},
|
|
success: function(result) {
|
|
$('#result').html(result);
|
|
}
|
|
});
|
|
}); |