You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 22, 2022. It is now read-only.
Any possible solutions to maintain the setter functionality of standard HTML element properties while watching them with Watch JS?
Example:
varelement=document.createElement('div');element.id='myId';// This will set HTML attribute to 'myId'console.log('Element:',element);// HTML attribute has been assigned properlyWatchJS.watch(element,'id',function(){console.log('Element ID changed')});element.id='aNewId';// This should set HTML attribute to 'aNewId'console.log('Element:',element);// However, WatchJS has broken this functionality
The text was updated successfully, but these errors were encountered:
Any possible solutions to maintain the setter functionality of standard HTML element properties while watching them with Watch JS?
Example:
The text was updated successfully, but these errors were encountered: