TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
muthukumar
NA
0
100.7k
javascript for total calculation
Sep 3 2014 3:54 AM
here i code a javascript for total calculation but my problem is
on keyup function only one textbox is works i want to both textbox in keyup funtion to calculate
total (i.e) quantity and price at runtime i want to edit both to be edit to calculate total
$(function ()
{
$("[id*=grid_productdetails]input[type=text][id*=txt_price]").keyup(function (e)
{
var price = $(this).closest('tr').find("input[type=text][id*=txt_price]").val();
var quantity = $(e.target).closest('tr').find("input[type=text][id*=txt_quantity]").val();
var total = parseInt(price) * parseInt(quantity);
$(e.target).closest('tr').find("[id*=lblTotal]").text(total);
});
Reply
Answers (
3
)
how to get json format document from sql database..
bind dropdownlist values to array