All I want is to be able to get the input from a polymer element and alert it onchange WITHOUT creating a custom polymer element.
issues: on-change
The on-* declarative event handlers are syntactic sugar provided by Polymer, so on-change won't work outside of a Polymer element. You can do the same thing in vanilla Javascript using querySelector and addEventListener:
on-*
on-change
querySelector
addEventListener