From Wikipedia, the free encyclopedia
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.

// <nowiki>



// Adds a "Copy" button next to every article title. Clicking it writes the article title to the clipboard.

// Script requested at WP:US/R by GreenC

// FYI, this script by Nardog does the same thing but has more features: /info/en/?search=User:Nardog/CopySectLink.js



function writeToClipboard( input ) {

	const data =  new ClipboardItem( { 'text/plain': new Blob(  input ], { type: 'text/plain' } ) } ) ];

	navigator.clipboard.write( data );

}



$( '#firstHeading' ).append( '<button id="copyTitle" style="margin-left: 1em;">Copy</button>' );



$( '#copyTitle' ).on( 'click', function () {

	// get title from API (easier than getting it from .html() and taking the tags out)

	const title = mw.config.get( 'wgPageName' ).replace( /_/g, ' ' );



	writeToClipboard( title );

} );



// </nowiki>
From Wikipedia, the free encyclopedia
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.

// <nowiki>



// Adds a "Copy" button next to every article title. Clicking it writes the article title to the clipboard.

// Script requested at WP:US/R by GreenC

// FYI, this script by Nardog does the same thing but has more features: /info/en/?search=User:Nardog/CopySectLink.js



function writeToClipboard( input ) {

	const data =  new ClipboardItem( { 'text/plain': new Blob(  input ], { type: 'text/plain' } ) } ) ];

	navigator.clipboard.write( data );

}



$( '#firstHeading' ).append( '<button id="copyTitle" style="margin-left: 1em;">Copy</button>' );



$( '#copyTitle' ).on( 'click', function () {

	// get title from API (easier than getting it from .html() and taking the tags out)

	const title = mw.config.get( 'wgPageName' ).replace( /_/g, ' ' );



	writeToClipboard( title );

} );



// </nowiki>

Videos

Youtube | Vimeo | Bing

Websites

Google | Yahoo | Bing

Encyclopedia

Google | Yahoo | Bing

Facebook