Following is my code all i want when .clickover function being called then it should also call the $(".popover").css
function. Kindly let me know how can i make such nested query
$(function() {
$('#notc').clickover({
title: "Notifications"
}, function() {
//$("div.popover").css("margin-left","60px");
alert("hi");
});
})