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()); } }());")
(No difference)

Revision as of 13:11, 13 June 2022

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