$('класс_селектора').on('change', function() {
if($(this).find(':selected').val()==6) {
$(this).closest('tr').find('input.product_id').prop('readonly', disabled);
}
});
$(document).ready(function(){
$("form#addpro").on('click', '[type=submit]', function(){
var $this=$(this).closest('form');
$.ajax({
url: 'process.php',
type: 'GET',
data: $(this).closest('form').serialize(),
async: false,
success: function (data) {
alert(data);
$this.submit();
},
cache: false,
contentType: false,
processData: false
});
return false;
});
});
"Может быть, не стоит использовать его в URI"
клиент уже как-то так наделал, ссылка проиндексировалась, надо теперь вот редирект сделать
про urlencode можете поподробнее идею описать?