$("#loggedinNav").click(function (e) {
// do something
});
this is my and i want to use same click functionality for other buttons, so can I achieve this behaviour like in this manner:
$("#loggedinNav" || "#mainlogo").click(function (e) {
// do something
});
where || = or