<form id='contact_form'>
Имя: <br><input name='imya' type="text" /><br>
Телефон: <br><input name='truba' type="text" /><br>
e-mail: <br><input name='mylo' type="text" /><br>
Сообщение: <textarea rows="10" cols="45" name="messaga"></textarea><br>
<input type="button" value="Связяться" class="sendform">
</form>
var tosend = $('#contact_form').serialize();
в результате получается imya=i&truba=777&mylo=a%40a.aa&message=wtf%2B--%5C-
Как мне через tosend получить значение каждого инпута? tosend.imya или tosend[imya]
/* //var arr = tosend.split('&');
//console.log(typeof(arr))
//console.log(str)
arr.each(function (i) {
$(this).split('=');
i++;
console.log(i)
});
console.log(arr[0])
var arr = arr.split('=');
console.log(arr);*/