View Single Post
  #1639  
Old 07.01.2021, 07:35
mgpai mgpai is offline
Script Master
 
Join Date: Sep 2013
Posts: 1,553
Default

Quote:
Originally Posted by user135711 View Post
In your youtube download to html page script, why do you call .prop() on string literals and not jquery selectors? "YT_VARIANT".prop()
Code:
// Get link property
String.prototype.prop = function() {
    return link.getProperty(this);
};

It is not a a JQuery method. It is prototype added by me to the Javascript String object and named as such by sheer coincidence.
Reply With Quote