mirror of
https://github.com/jquery/jquery-ui.git
synced 2026-01-29 01:07:55 -05:00
11 lines
173 B
JavaScript
11 lines
173 B
JavaScript
$(function() {
|
|
|
|
$('body').prepend(
|
|
'<h1 id="header">' + document.title + '</h1>' +
|
|
'<h2 id="banner"></h2>' +
|
|
'<h2 id="userAgent"></h2>' +
|
|
'<ol id="tests"></ol>'
|
|
);
|
|
|
|
});
|