Show HN: Percentage Calculator – My Daughter's First JavaScript App (outpan.com) 9 points by perfect_loop 7y ago ↗ HN
[–] jk2faster 7y ago ↗ 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(); });
1 comment
[ 4.3 ms ] story [ 16.6 ms ] thread