sashn

Results 2 issues of sashn

- the example in [jamiewilson/form-to-google-sheets](https://github.com/jamiewilson/form-to-google-sheets) is awesome and has helped me a lot. - but i continually stumbled over the response, when being logged in the Promise chain - i...

my code: ``` console.log($("#slider").val()); jQuery("#slider").slider({ from: 0, to: 10000, callback: function(value){ console.log(value); } }) console.log($("#slider").val()); ``` now i'm printing out (logging to js console) the value of the input field...