Hi,
I am able to navigate to a website by typing http://www.example.com and it loads OK. When I try to go to the website via IP http://xxx.xxx.xx.xxx I get an IIS error No web site configured?
Why is this and how can I change it?
Thanks
GH
FIXED!
I changed
<a href="#" onClick="showHelp();"><span>help</span></a>
to this
<a href="javascript:showHelp();"><span>help</span></a></span>
and it's fixed
Thanks
G'Hacker
Hi,
I am setting a div element visible using the following code
function showHelp()
{
var helpDiv = getRawObject('Help');
helpDiv.style.display = 'block';
}
It works fine in FF but in IE 7 it scrolls the page down to the div as if I was going to an anchor link.
Does anyone know why this my...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.