The green "Send Data" button at the bottom works fine when the browser is large, but once the responsive styles kick in the button doesn't do anything.
This is because there are actually 2 buttons that get shown/hidden based on screen size. They currently have the same id="send" so jQuery is only binding events to the first one.
Change the jQuery selector to a class, or better yet: start to implement a data-click="callThisFunc" element pattern.
The green "Send Data" button at the bottom works fine when the browser is large, but once the responsive styles kick in the button doesn't do anything.
This is because there are actually 2 buttons that get shown/hidden based on screen size. They currently have the same
id="send"
so jQuery is only binding events to the first one.Change the jQuery selector to a class, or better yet: start to implement a
data-click="callThisFunc"
element pattern.