Changing Webkit properties with jquery

Asked

Viewed 21 times

0

I want to change a Webkit property using jquery, I have something like this for now.

$("#videoExe").css({
 '-webkit-media-controls-timeline': 'display="none"'

});

But nothing happens at all...

  • 4

    Face what you wrote doesn’t make much sense, you can’t use display:None to remove a CSS property. The correct would be something like '-webkit-media-controls-timeline': 'none'

  • Where is your player and what you are wanting to do?

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.