Home › Forums › CSS › css with jquery not executing › Re: css with jquery not executing
July 7, 2011 at 5:41 am
#82987
Participant
hi
found it.. am not sure if this is causing the problem but here goes
in my souce file I have this piece of code:
if ( IS_BUDGETLIST_INSTALLED == 1 ) { ?>
=BUDGET_LIST?>
in the file :products_listing.js.php , I have the expression:
function compareCheckReturn(responseText, textStatus)
{
if ( textStatus != "success" )
showPopError("=SHOW_POPUP_ERROR_IN_LOADING?>");
}
$("input[@name=chkCompare]").change(function () {
$.ajax({
type: "GET",
url: "=SCRIPT_ROOT?>compare_products_add_ajax.php?productId="+($(this).val())+"&action="+($(this).attr("checked")?"add":"remove"),
success: compareCheckReturn
});
});