I want to know that is there any way by which i can detect whether Javascript is enabled in the browser. Like we can detect cookies by using code in the filter
if (httpServletRequest.isRequestedSessionIdFromCookie()) {
}
can i detect javascript also? Does Java provide any method for this? Actually i want to check whether both javascript and Cookies are enabled. If not then i want to show message to user that Please make sure your cookies and javascript is enable
Thanks