Показать сообщение отдельно
  #11 (permalink)  
Старый 31.07.2019, 17:28
Аспирант
Отправить личное сообщение для nGreg Посмотреть профиль Найти все сообщения от nGreg
 
Регистрация: 09.06.2017
Сообщений: 49

<script>
    $(document).ready(function(){
            $(".tempOffChangeStatus").first().change(function(){

            var rel = $(this).attr("rel");
            var offStatus = $(this).val();

            $.post("/index.php?component=org&section=ajax", {
                sect: "<?=$_GET['section']?>",
                id: rel,
                id_zp:<?=$openzakup[0]['id']?>,
                offStatus: offStatus,
                event: "tempOffStatus"
            },
                function(){
                console.log(rel);
                console.log(offStatus);
                })
        })
    })
</script>
Ответить с цитированием