29 lines
551 B
JavaScript
Raw Normal View History

2011-06-30 15:30:43 +00:00
$(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');
}
});
2011-08-23 15:20:02 +00:00
2011-08-30 07:11:39 +00:00
$('.tooltip').each(function(){
var title = $(this).attr('title');
2011-08-23 15:20:02 +00:00
$(this).attr('title', '');
2011-08-30 07:11:39 +00:00
$(this).qtip({
2011-08-23 15:20:02 +00:00
content: title,
2011-08-30 07:11:39 +00:00
style: {
width: 500,
classes: "ui-tooltip-cream"
},
position: {
at: "bottom center",
my: "top center"
}
2011-08-26 14:02:45 +00:00
});
});
2011-06-30 15:30:43 +00:00
});