Say I need to correct a number of elements widths by 19px.
Is it possible to find elements and set the found elements CSS-width like so:
$el.find( '.ui-content' )
.css({'width': "parseFloat(found_element_current_width) -19" })
If not, what’s the best way to do this?
From the documentation of the
.css()function:So you could just do: