Right now I’m using…
window.location.pathname != "/x_Controller/x_View"
Is there any way to get just the “x_View”? Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can just do a substring of the
window.location.pathnameEDIT
As Galactic suggested this won’t get you the action name if it has any route values on the end like
actionName/12. What you really want to use isThat will get you the actual name of the Action instead of just the stuff after the last ‘/’