$(function() {
$( ".on3" ).hover(function() {
$("#price_ver").text('Текст');
},
function() {
$j("#price_ver").text(' ');
});
$( "#prod_sa" ).click(function() {
$(this ).removeClass('on3');
$(this ).addClass('on33');
$(this).unbind( "hover");
$(this).off( "hover");
});
<div id="prod_sa" class="on3">Текст</div>