Код: Выделить всё
Uncaught SyntaxError: Unexpected token <
Код: Выделить всё
title: '
[img]/images/text/text_mario_planet_jukebox.png[/img]
',
Код: Выделить всё
$(document).ready(function() {
$('#infobutton').click(function() {
$('#music_descrip').dialog('open');
});
$('#music_descrip').dialog({
title: '
[img]/images/text/text_mario_planet_jukebox.png[/img]
',
autoOpen: false,
height: 375,
width: 500,
modal: true,
resizable: false,
buttons: {
'Without Music': function() {
$(this).dialog('close');
$.cookie('autoPlay', 'no', { expires: 365 * 10 });
},
'With Music': function() {
$(this).dialog('close');
$.cookie('autoPlay', 'yes', { expires: 365 * 10 });
}
}
});
});
Подробнее здесь: https://stackoverflow.com/questions/363 ... cted-token