Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

send data with window.location.href

<pre lang="HTML"> $('#getPrice').click(function () {
                var discountAmount = $('#lblDiscountAmount').text();
                var productId = $(this).parent('td').parent('tr').attr('data-productid')
                alert(productId);
                alert(discountAmount);
                //if (!discountAmount) { return; }

                location.href = "Products/helloPrice?ProductId=" + productId;
               // This is not invoking the action method.

            });
Source by www.codeproject.com #
 
PREVIOUS NEXT
Tagged: #send #data
ADD COMMENT
Topic
Name
7+5 =