Thanks for the answer...I guess there is simply no way to force a checked value since the page is being reloaded.
I got this code off the net...guess I need to find a different photo viewer. In the examples they simply used an On and Off link with enable and disable. I went to the radio...
The show function is
function showPhoto(index) {
// Shows the photo with identified index
var theURL = "" + this.location;
// Strip parameters, if any present, from end of URL.
if (theURL.indexOf("?")>0) {
theURL = theURL.substring(0,theURL.indexOf("?"));
}
// Append the new...
the two functions are fairly simple and there is nothing I can see that is clearing the buttons.
function enableSlideMode (newDelay) {
// Turns slide mode on
slideMode=Boolean(true);
if (newDelay > 0) {
slideDelay = newDelay;
}
showPhoto(glbCurrentPhoto); //necessary to reset URL...
All I am attempting to do is turn a slide show on or off. The link for this is
http://www.shadetreeriding.com/PhotoAlbums/Photo2/TestphotoalbumQ.htm
This works but the problem is that the selected button clears and I do not want it to clear. If it clears then the user does not know if the...
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.