Напоминание
(custom)
<script>
function sendMess() {
var login = $('input[name*="text_1"]').val();
url_string ='/objects/?object=pogStation&op=set&p=mess&v='+login ;
xmlhttp = new XMLHttpRequest();
xmlhttp.open("GET", url_string, true);
xmlhttp.send(null);
}
</script>
<form method="get">
<input type="text" name="text_1" value="%pogStation.mess%">
<a href="#" onClick="sendMess();" data-role="button" class="ui-link ui-btn ui-shadow ui-corner-all" role="button">Отправить<span id="processing_205"></span></a>
</form>
<div id='result'></div>