HTML onseeked Attribute Last Updated : 06 Aug, 2021 Summarize Comments Improve Suggest changes Share Like Article Like Report The HTML onseeked Attribute is a event attribute which occurs when the user finishes the skips the media to a new position. Applicable: <audio> <video> Syntax: <element onseeked="Script"> Attribute Value: This attribute contains single value script which works when onseeked event attribute call. This attribute is supported by <audio> and <video> tags. Example: html <!DOCTYPE html> <html> <head> <title> HTML onseeked Attribute </title> </head> <body> <center> <h1 style="color:green">GeeksforGeeks</h1> <h2>HTML onseeked Attribute</h2> <audio controls id="audio"> <source src="beep.mp3" type="audio/mpeg"> </audio> </center> <script> document.getElementById( "audio").addEventListener("seeked", GFGfun); function GFGfun() { alert("Media Skipped"); } </script> </body> </html> Output: Supported Browsers: Google ChromeInternet ExplorerFirefoxApple SafariOpera Comment More infoAdvertise with us Next Article HTML onseeked Attribute M manaschhabra2 Follow Improve Article Tags : Web Technologies HTML HTML-Attributes Similar Reads HTML selected Attribute The selected attribute in HTML is used to specify which option should be by default selected when the page loads. This is a boolean attribute. The option that has the selected attribute will be displayed by default.Syntax: <option selected>value</option>Note: This attribute can be used o 2 min read HTML | scoped Attribute The HTML scoped attribute is a boolean attribute that is used to specify that the styles only apply to this element's parent element and that element's child elements (not the entire document).Note : It is a deprecated attribute and it is not supported by HTML5. Supported tag: style Example: html 1 min read HTML name Attribute The HTML name attribute labels elements, notably form inputs, identifying them for data submission. It's crucial for form processing and is often used in JavaScript DOM manipulation. Unique within a form.Note: This attribute has been DEPRECATED and is no longer recommended.Supported tags:ElementDesc 3 min read HTML open Attribute The open attribute in HTML is used to indicate whether the details will be shown on page load. This is a boolean attribute. If it is not present by default then details are not shown. Note: This attribute is used by <details> element only. This attribute has been DEPRECATED and is no longer re 1 min read HTML Id Attribute HTML id attribute provides a unique identifier for an element within a document. It allows targeted selection and manipulation of the element through CSS and JavaScript, facilitating specific styling and functionality. In CSS, the id attribute is used using the # symbol followed by id. quotes are no 5 min read Like