<script>
var dataObj = {
subCat : "#<?=$subCatId?>",
mainCat : "#<?=$mainCatId?>"
}
</script>
<script src="file.js"></script>
jQuery(function() {
var $sC = jQuery(dataObj.subCat).hide();
jQuery(dataObj.mainCat).hover(
function(){
$sC.show(300);
},
function(){
$sC.hide();
}
);
});
<script>
"window.data = {'mainCatId':". $mainCatId . ",'subCatId': ". $subCatId ."}"
</script>
jQuery(function() {
jQuery('div#'+ window.subCatId).hide();
jQuery('div#'+ window.mainCatId ).hover(
function(){
jQuery(this).find('div#' + window.subCatId).show(300);
},
function(){
jQuery(this).find('div#'+ window.subCatId).hide();
}
);
});
jQuery(function() {
jQuery('.sub-cat').hide();
jQuery('.main-cat').hover(
function(){
jQuery(this).find('.sub-cat').show(300);
},
function(){
jQuery(this).find('.sub-cat').hide();
}
);
}