Although I may not be well-versed in angular/jquery, it is clear that the div generated using angular has caught my attention:
<div id='my-div' style={{ang.style}}'>
This is content inside the div
</div>
The style of the div is controlled by angular. Is there a way for me to access this value in jQuery?
When attempting $('#my-div').attr("style")
, the result only displays {{ang.style}}
Though I am aware that this is not the best practice, given the current limitations, I need to retrieve this value in jQuery as a temporary solution.
I'm reaching out to the experts in Angular/JQuery for guidance...