Live data from Hacker News

Show HN: Percentage Calculator – My Daughter's First JavaScript App

outpan.com

1–2 of 2 posts

Re: Show HN: Percentage Calculator – My Daughter's First JavaScript App

#2
This is a pretty neat beginning :)

   $('#cal-1').click(function(){
        $('#res-1').html($('#in-1-1').val()/100 * $('#in-1-2').val() );
        $('#res-1').show();
      });
      $('#cal-2').click(function(){
        $('#res-2').html(($('#in-2-1').val()/$('#in-2-2').val() * 100).toString() + '%');
        $('#res-2').show();
      });
      $('#cal-3').click(function(){
        $('#res-3').html((($('#in-3-2').val() - $('#in-3-1').val())/$('#in-3-1').val() * 100 ).toString() + '%');
        $('#res-3').show();
      });