2011-06-30 15:30:43 +00:00
|
|
|
$(document).ready( function()
|
|
|
|
{
|
2011-11-09 10:07:02 +00:00
|
|
|
$('.idpr').on('click', function(){
|
2011-06-30 15:30:43 +00:00
|
|
|
//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(){
|
2011-08-31 14:22:23 +00:00
|
|
|
var title = $(this).attr('title');
|
2011-09-01 13:56:31 +00:00
|
|
|
var width = $(this).attr('wdth');
|
2011-08-23 15:20:02 +00:00
|
|
|
$(this).attr('title', '');
|
2011-08-30 07:11:39 +00:00
|
|
|
$(this).qtip({
|
2011-09-01 16:05:17 +00:00
|
|
|
solo:true,
|
2011-08-23 15:20:02 +00:00
|
|
|
content: title,
|
2011-08-30 07:11:39 +00:00
|
|
|
style: {
|
2011-09-01 13:56:31 +00:00
|
|
|
width: width,
|
2011-08-30 07:11:39 +00:00
|
|
|
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
|
|
|
});
|