jquery-watch
jquery-watch copied to clipboard
A jQuery plug-in to watch CSS style and attribute changes and get notified when a change occurs
Bumps [jquery](https://github.com/jquery/jquery) from 2.2.4 to 3.5.0. Commits 7a0a850 3.5.0 8570a08 Release: Update AUTHORS.txt da3dd85 Ajax: Do not execute scripts for unsuccessful HTTP responses 065143c Ajax: Overwrite s.contentType with content-type header...
hi is there a way to watch for e.g. a "ticket" and have that post any of the changes on that to an AJAX call action (with what changed from->to)...
I'm trying to watch element's width. Element's width is changing using CSS media querries. My code looks like this: ``` // some element to monitor var el = $("#content"); //...
Hi @RickStrahl, after upgrading jQuery from 2.2.4 to 3.1.0 all other plugins run as they were used to. Except jquery-watch. As far as I could evaluate, the code itself runs...
This works perfectly ``` ... el.watch({ properties: "top,left,opacity,attr_class,prop_innerHTML", // rest of your code } }); ``` This not (**only top property will be watched**) ``` ... el.watch({ properties: "top ,left,...