Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript jQuery equivalent for css selector progress::-webkit-progress-value Re: jQuery equivalent for css selector progress::-webkit-progress-value

#132045
Robin
Participant

Hi,

You’ll want to do this

$(document).ready(function() {
$(‘#div’).html($(‘#progress’).val());
});

or

You can try this

$(‘#progress’).val();

You can’t select using the entire tag with jQuery.