angelzzz,
вы что-то не договариваите ...
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css"> input[name=proceed]{
width: 400px;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
$(function() {
$('input[name=proceed]').on("click",function() {
this.value += " "+$('input[name=url]').val()
})
var websitesArr = [ "ya.ru", "google.com", "ok.ru", "vk.com", "fb.com" ];
for (var i=0; i<websitesArr.length; i++) {
$('input[name=url]').val(websitesArr[i]);
$('input[name=proceed]').trigger('click');
}
});
</script>
</head>
<body>
<input type="text" name="url"><input type="text" name="proceed">
</body>
</html>