2011-08-31 14:22:23 +00:00

29 lines
551 B
JavaScript

$(document).ready( function()
{
$('.idpr').live('click', function(){
//e.preventDefault();
var n = $(this).attr('id');
if ($('#p'+n).css('display')=='none'){
$('#p'+n).css('display', 'block');
} else {
$('#p'+n).css('display', 'none');
}
});
$('.tooltip').each(function(){
var title = $(this).attr('title');
$(this).attr('title', '');
$(this).qtip({
content: title,
style: {
width: 500,
classes: "ui-tooltip-cream"
},
position: {
at: "bottom center",
my: "top center"
}
});
});
});