Common.js

From Young Beethoven
Jump to navigation Jump to search
(Created page with "→â€: $(function () { if($('input[name=composer]')) { $('#firstHeading').html($('input[name=composer]').val()+'<br>'+$('#firstHeading').html()); } }());")
 
Line 1: Line 1:
/* Any JavaScript here will be loaded for all users on every page load. */
/* Any JavaScript here will be loaded for all users on every page load. */
$(function () {
$(function () {
console.log($('input[name=composer]'))
if($('input[name=composer]')) {
if($('input[name=composer]')) {
$('#firstHeading').html($('input[name=composer]').val()+'<br>'+$('#firstHeading').html());
$('#firstHeading').html($('input[name=composer]').val()+'<br>'+$('#firstHeading').html());
}
}
}());
}());

Revision as of 13:12, 13 June 2022

/* Any JavaScript here will be loaded for all users on every page load. */
$(function () {
	console.log($('input[name=composer]'))
	if($('input[name=composer]')) {
		$('#firstHeading').html($('input[name=composer]').val()+'<br>'+$('#firstHeading').html());
	}
}());