Hello, I have this jquery code, and want to toggle it. When I use
$('#checkb').toggle(function() });
It does not toggle
$('#checkb').bind('click',function() {
var PackagePrice = $('#specs_packageprice').text();
var Quantity = $('#specs_quantity').text();
var ItemPrice = $('#specs_itempr').text();
var Unit = $('#specs_unit').text();
var calc = Unit*ItemPrice;
$('#final_value').text(calc);
});
What could be wrong?
Thanks Jean