Hello everyone,
I am trying to find an element with a particular style and change its style to something else.
Here is the html element
<table style='width: 555px;'>
  <tr>
    <td>blablabla</td>
  </tr>
</table>
Now I am trying to find the table with width 555px and change it to 650px using jquery.
$('table[style*=width:555px]').css("width", "610px");
But this is not working. Can somebody spark an idea please?
NOTE: For some reason I cannot change the html.