mirror of
https://github.com/jquery/jquery-ui.git
synced 2026-01-30 08:08:10 -05:00
13 lines
247 B
JavaScript
13 lines
247 B
JavaScript
$(document).ready(function() {
|
|
|
|
$('.component-links a').click(function() {
|
|
var comp = $(this).attr('href').replace(/^#/, "");
|
|
loadDemo(comp);
|
|
});
|
|
|
|
// hash listener
|
|
if (location.hash) {
|
|
loadDemo(location.hash.replace(/^#/, ""));
|
|
}
|
|
|
|
}); |