User

Difference between revisions of "Nicolas NALLET/bluell.js"

< User:Nicolas NALLET

(Created page with "$( "input[href^='https://en.wikipedia.org/wiki/']" ).val( "news here!" );")
 
Line 1: Line 1:
$( "input[href^='https://en.wikipedia.org/wiki/']" ).val( "news here!" );
+
$( "input[href^='https://en.wikipedia.org/wiki/']" ).on('click', function(){
 +
$(this).css('color', 'red');
 +
});

Revision as of 10:17, 2 June 2021

$( "input[href^='https://en.wikipedia.org/wiki/']" ).on('click', function(){
	 $(this).css('color', 'red');
});