I'm having difficulty in selecting the "style=:width: 10%" value in jquery for progressbar element in bootstrap.
<div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="width: 10%;"> <span class="sr-only">0% Complete</span> </div>
This is what I have tried so far, $(".progress-bar[style*=width]"); but it returns the entire div.
My goal is to target that value and change it via Ajax.
Here is a jsfiddle boilerplate for your reference.
Thanks