jQuery(document).ready(function($){
$("label:contains('Custom Message')").append("
[?]
");
$('div#CustomMessage').click(function() {
});
$('div#CustomMessage').qtip({
content: 'Text for customer message here',
show: 'mouseover',
hide: 'mouseout',
position: {
corner: {
target: 'topRight',
tooltip: 'bottomLeft'
}
},
style: {
name: 'cream' // Inherit from preset style
}
});
$("label:contains('Custom Logo')").append("[?]
");
$('div#CustomLogo').click(function() {
});
$('div#CustomLogo').qtip({
content: 'Text for custom logo here',
show: 'mouseover',
hide: 'mouseout',
position: {
corner: {
target: 'topRight',
tooltip: 'bottomLeft'
}
},
style: {
name: 'cream' // Inherit from preset style
}
});
$("label:contains('Envelope Printing')").append("[?]
");
$('div#EnvelopePrinting').click(function() {
});
$('div#EnvelopePrinting').qtip({
content: 'Text for envelope printing here',
show: 'mouseover',
hide: 'mouseout',
position: {
corner: {
target: 'topRight',
tooltip: 'bottomLeft'
}
},
style: {
name: 'cream' // Inherit from preset style
}
});
$("input[id*='data-Member']").autocomplete({
source: "../../admin/members.php",
minLength: 2
});
});