I have this situation: I need to add quotation marks to the input text field (html) without changing the input value. I work with angular, so I use ngModel, it looks like
<input ng-model="data" type="text" />
I want the input field to display "everything that is in {{data}} ", but the data of the variables themselves remains unchanged (without quotes).
I haven't found any css / Angular tricks yet ... any ideas?
javascript html angularjs css
Uria mor
source share