site.get_discount_price = function(discount_id, callback) {
jQuery.ajax({
url: '/test.php/' + discount_id + '.json',
dataType: 'json',
success: function (data) {
if (callback) callback(data.summa_vozvrata);
}
});
}
/* ... */
site.get_discount_price(discount_id, function(summa) {
/* и уже здесь мы работаем с переменной summa */
});
var html = '<input type="text" name="mod" id="mod" size="4" placeholder="фотка" accesskey="a" style="border-width: 0px; background: url(images/opacity.png);">';
var str = 'http://postach.com.ua/image/';
$('body').append(html);
$("#mod")
.css({
position: 'absolute',
top: 539,
left: 290,
color: 'red'
})
.on("keyup", function () {
$('[name="image"]').val($('[name="mod"]').val().replace(str, ''));
});