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...
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...
Browser other questions tagged jquery css webkit
You are not signed in. Login or sign up in order to post.
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'
– hugocsl
Where is your player and what you are wanting to do?
– Leandro Angelo