Search Results

4
votes

Adding ‘onClientClick’ javascript to an ASP.NET Login control

top.location.href is setting the url of the browser to be a new url so you are never completing the action of the click. What you could do is set the target of the form to be "_top" …
8
votes

changing class of a <span> element with JavaScript

.className rather than .class …
0
votes

Javascript InnerHTML in IE7 messing with INPUT tags

I believe this isn't something you can get around directly as the quotemark-less html is just how IE7 represents the DOM node internally. My view on the best way to ensure you get the e …
0
votes

Bookmarklet to force IE6 to start autorefreshing a page?

You could try having the bookmarklet open a new window and writing the content of that window to reload the parent via something like window.opener.document.location.reload(); …
0
votes

redirecting in javascript by making use of the credentials

A simple way that won't require javascript would be to have an html form with the same 'action' url as the login's action url page of the second system. Once logged in to the first system and compl …