$('.exapmle-1 input').keyup(function()
{
var value = $(this).val();
$(this).parent().parent().find('td:gt(0)').each(function()
{
console.log(value);
});
});
$('.exapmle-1 input').keyup(function()
{
var f = function() {
console.log($(this).val());
};
$(this).parent().parent().find('td:gt(0)').each(f.bind(this));
});
$('.exapmle-1 input').keyup ->
$(this).parent().parent().find('td:gt(0)').each =>
console.log $(this).val()
return
$('.exapmle-1 input').keyup ->
$(this).parent().parent().find('td:gt(0)').each !~>
console.log $(this).val()
$('.exapmle-1 input').keyup(function() {
$(this).parent().parent().find('td:gt(0)').each(function(){
console.log($(this).val());
}.bind(this));
});
$('.exapmle-1 input').keyup(() => {
$(this).parent().parent().find('td:gt(0)').each(() => {
console.log($(this).val());
});
});