Relative Content

Tag Archive for phpajax

Ajax php, не обрабатывается форма после доюавления ajax

<form action=”” method=”post” value=”1″ class=”block” id=”form”> <div class=”block-txt”> <p class=”num”>-450 000 ₽</p> <p class=”desc”>Скидка в кредит</p> </div> <!–<input type=”checkbox”>–> <input type=”number” name=”num” style=”width: auto;”> <button type=”submit” name=”type” value=”1″ class=”row-discounts_block_button”> </button> </form> <script> jQuery(“#form”).on(“submit”, function(){ jQuery.ajax({ url: ”, method: ‘post’, dataType: ‘html’, data: jQuery(this).serialize(), success: function(data){ //jQuery(‘#product-price’).html(data); // jQuery(‘#product-price’).html(‘data’); } }); return false; }); </script> <?php […]