I am developing an Angular2 app and to make mobile friendly need to disable autocomplete, autocorrect, autocapitalize, and spellcheck for all html inputs. I do not want to have to manually add this for every single input and would like a dynamic site way method to implement.
For example in jQuery we could just do $('input').attr('autocomplete','off')
How can I accomplish the same in Angular2? To grab any inputs sitewide and modify their attributes?