Suppose my domain name is http://www.hello.com
How can I use jQuery/JavaScript to make the browser’s URL bar look like “www.HELLO.com”?
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 cannot change what gets displayed in the browser’s URL bar. That is a basic security feature.
You could make your domain all upper case (and redirect the pages to that version).(That apparently does not work, see @Kristian’s comment: Most browsers are not concerned about case, hence a redirect to HELLO.com would still appear as hello.com)You could also display HELLO.com in the browser window’s title bar (the HTML document title).