<form method="GET" id="formx2" action="/index1.php">
<input style="display: inline-block;width: 70%;" class="form-control" placeholder="Укажите ссылку на страницу сайта" name="id" value="" type="text" required="">
<input class="form-control" style="display: inline-block" value="Отправить" type="submit">
</form>
var title = location.hash.substring(1);
$(".your-subject").val("Запись: " + title);
$('.order-button').click(...);
$('.order-button').click(
// Код получения хеша...
//
var title = location.hash.substring(1);
$(".your-subject").val("Запись: " + title);
);
<p>Наш телефон: <span id="phonenumber"></span></p>
$.getJSON(GEOCODING).done(function(location) {
$('#country').html(location.results[0].address_components[5].long_name);
$('#state').html(location.results[0].address_components[4].long_name);
$('#city').html(location.results[0].address_components[2].long_name);
$('#address').html(location.results[0].formatted_address);
$('#latitude').html(position.coords.latitude);
$('#longitude').html(position.coords.longitude);
getPhone(location.results[0].address_components[2].long_name);
})
function getPhone(city){
$.('#phonenumber').innerHTML = (city=='Казань'? '1111111111':city='Москва'?'2222222222':'...';
}
$(document).ready(function(){
$("#form").submit(function(e) { //устанавливаем событие отправки для формы с id=form
e.preventDefault(); // отменяем событие
var form_data = $(this).serialize(); //собераем все данные из формы
$.ajax({
type: "POST", //Метод отправки
url: "send.php", //путь до php фаила отправителя
data: form_data,
success: function() {
//код в этом блоке выполняется при успешной отправке сообщения
alert("Ваше сообщение отпрвлено!");
});
return false;
});
});