jQuery(document).ready(function($){ $("label:contains('Message Options')").append("
[?]
"); $('div#MessageOptions').click(function() { }); $('div#MessageOptions').qtip({ content: 'Each card design has an exclusive pre-printed holiday greeting related to it. You also have the option to add an additional 2 line custom greeting to your cards, which is a great way to "personalize" your cards with your own special holiday message.', show: 'mouseover', hide: 'mouseout', position: { corner: { target: 'topRight', tooltip: 'bottomLeft' } }, style: { name: 'cream' // Inherit from preset style } }); $("label:contains('Logo Options')").append("
[?]
"); $('div#LogoOptions').click(function() { }); $('div#LogoOptions').qtip({ content: 'Here, you can choose to add a black and white or color logo to the inside of your card. This is a good way for the recipient of your card to instantly know who is sending a holiday greeting to them.', show: 'mouseover', hide: 'mouseout', position: { corner: { target: 'topRight', tooltip: 'bottomLeft' } }, style: { name: 'cream' // Inherit from preset style } }); $("label:contains('Final Price')").append("
[?]
"); $('div#FinalPrice').click(function() { }); $('div#FinalPrice').qtip({ content: 'Your total price per card, including all options, is displayed below.', show: 'mouseover', hide: 'mouseout', position: { corner: { target: 'topRight', tooltip: 'bottomLeft' } }, style: { name: 'cream' // Inherit from preset style } }); $("label:contains('Signature Options')").append("
[?]
"); $('div#SignatureOptions').click(function() { }); $('div#SignatureOptions').qtip({ content: 'The signature option is a great way for an entire department to "personalize" the cards sent to your customers. Your employees will be happy they only have to sign one card (the signature template)!', 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: 'Let us print your return address on the envelope. This return address will display on the upper left hand corner of your envelope.', 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 }); });