Здесь по клику открывается форма с информацией. Мне нужно, что бы она открывалась при наведении. Менял click на hover, не работает.
<script type="text/javascript">
function show_full(id) {
$.ajax({
type: "POST",
url: dle_root+"engine/ajax/show_full.php",
data: "id="+id,
dataType: "xml",
success: function(xml) {
jQuery(xml).find('site').each(
function()
{
title = jQuery(this).find('title').text(),
desc = jQuery(this).find('des').text();
rate = jQuery(this).find('rate').text();
$('#show_full').remove();
$('body').append("<div id=\"show_full\" style=\"overflow: auto;width:80%;\"></div>");
$('#show_full').html( desc);
$('#show_full').dialog({
zIndex: 900,
width: $(window).width()*0.4,
height: $(window).height()*0.8,
buttons: [ { text: "Закрыть", click: function() { $(this).dialog("close"); } }], close: function(event, ui) { $('#show_full').remove(); },
title: title,
autoOpen: true
});
$('.ui-dialog-buttonset').html('<p align="left">'+rate+'</p>');
});
}
});
}
</script>
<a href="#" onclick="show_full('{news-id}'); return false;">Быстрый просмотр</a>
Уже все пересмотрел но не могу найти даже рядом похожее, что бы применить.