Created
April 8, 2016 07:27
-
-
Save aganzha/8d960c2f8048e8c684fd97b7aaefd829 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//По поводу создания заявок из корзины: нужно в ф-ию GoTo3() на странице корзины, рядом с отправкой запроса нужно вставить вот такой код: | |
$.ajax({ | |
url:'http://62.109.20.30/ext/order', | |
type:'POST', | |
data:{ | |
order: $('.item-2 td').text(), | |
name: $("#NameTxb").val(), | |
phone: $("#TelefonTxb").val(), | |
email: $("#EmailTxb").val() | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment