Quotes help make search much faster. Example: "Practice Makes Perfect"

Friday, June 7, 2013

Codeschool Sample Solution Keyup Event Handler II



$(document).ready(function() {
  $("#nights").on("keyup", function() {
    //var days = $(this).val();
    //var pricePerDay = $(".tour").data('daily-price');
    //var totalPrice = days * pricePerDay;
    //$("#nights-count").text(days);
    //$("#total").text(totalPrice);
    $("#nights-count").text($(this).val());
    $("#total").text($(this).val() * $(this).closest(".tour").data('daily-price'));
  });
});

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts