Hello
Is it possible to use SQL queries in a JS file?
Example I have the following code, and would like for each input[type='text'] encountered, to save its value to a sql table in a column:
jQuery("input[type='text']").blur(function(){
var id = jQuery(this).attr('id');
var inputVal = jQuery(this).val();
});