Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS css with jquery not executing Re: css with jquery not executing

#82987
alphakurt
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:









 









in the file :products_listing.js.php , I have the expression:

function compareCheckReturn(responseText, textStatus)
{
if ( textStatus != "success" )
showPopError("");
}

$("input[@name=chkCompare]").change(function () {
$.ajax({
type: "GET",
url: "compare_products_add_ajax.php?productId="+($(this).val())+"&action="+($(this).attr("checked")?"add":"remove"),
success: compareCheckReturn
});
});