Сравнение изменений на сайте
by satantx
HTML
<input type="text" value="213123">
<input type="text" value="dafsdf">
<input type="text" value="21asfasd a3123">
<input type="text" value="341234 fg fsdf">
<input type="text" value="242 ">
<input type="text" value="">
<input type="text" value="dsa AD SD">
<input type="text" value="56546456">
<input type="text" value="AFDS FDF">
<select name="" id="">
<option>123123123</option>
<option>asfs dfsd </option>
<option>1231fasdf sdf 23123</option>
<option>1231sd fsdf sdfds23123</option>
</select>
<input type="text" value="21345443543 3253123">
<textarea name="" id="" cols="30" rows="10">dfas fsdf asdfds f</textarea>
<button>нажми меня</button>
JavaScript
var mass = [];
var mass_new = [];
$('input, select, textarea').each(function(){
var el = $(this).val();
mass.unshift(el);
});
$('button').click(function(){
$('input, select, textarea').each(function(){
var el_change = $(this).val();
mass_new.unshift(el_change);
});
if (mass.join(';') == mass_new.join(';')) {
console.log('массивы равны');
} else {
console.log('массивы не равны');
}
});