mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
11 lines
183 B
JavaScript
11 lines
183 B
JavaScript
$(function() {
|
|
|
|
$('body').prepend(
|
|
'<h1 id="header">' + document.title + '</h1>' +
|
|
'<h2 id="banner"></h2>' +
|
|
'<h2 id="userAgent"></h2>' +
|
|
'<ol id="tests"></ol>'
|
|
);
|
|
|
|
});
|