Hi, I wish to know why the AND
operator is not working here? Even though without operator it working fine what is wrong while including it?
else if (keyCode == KeyEvent.KEYCODE_CTRL_LEFT && keyCode == KeyEvent.KEYCODE_S) {
int visibility=new_Sell_order_cart.getVisibility();
if(visibility==View.VISIBLE)
{
openCart();
}
}
If its not possible how jQuery developer Achive this
if (e.keyCode == 65 && e.ctrlKey) {
alert('ctrl A');
}
});