mirror of
https://github.com/jquery/jquery-ui.git
synced 2026-02-07 17:45:04 -05:00
12 lines
276 B
JavaScript
12 lines
276 B
JavaScript
$(document).ready(function() {
|
|
|
|
$('.component-links a').history(function() {
|
|
loadDemo( $(this).attr('href').replace(/^#/, "") );
|
|
});
|
|
|
|
var instructions = $("#containerDemo").html();
|
|
$.ajaxHistory.initialize(function() {
|
|
$("#containerDemo").html(instructions);
|
|
});
|
|
|
|
}); |