I m trying to add some text to the input search field using javascript
I tried below code:
document.getElementsByClassName('contacts_modal_search_field')[0].innerHTML = \"test\
and many others, but unsuccessful.
this is the code :
<div class="contacts_modal_search">
<input class="form-control contacts_modal_search_field no_outline ng-pristine ng-valid ng-empty ng-touched" my-focused="" type="search" placeholder="Search" ng-model="search.query" autocomplete="off" style="">
<a class="im_dialogs_search_clear tg_search_clear ng-hide" ng-click="search.query = ''" ng-show="search.query.length" style="">
<i class="icon icon-search-clear"></i>
</a>
</div>