I want my tooltip to appear in the div (see picture) after the user clicks on the input. Nothing will be in this div until the user clicks on the input.
My jQuery :
$("#orderform :input").tooltip({ // place tooltip on the right edge position: "bottom right", // a little tweaking of the position offset: [0, 10], // use the built-in fadeIn/fadeOut effect effect: "fade", // custom opacity setting opacity: 0.7 }); 
My jsFiddle CLICK
$( ".selector" ).tooltip( "open" );