Warning: Please include a link to the DD script in question in your post. See this thread for the proper posting format when asking a question.
This is untested yet but should work. Try this code:
Code:
<script type="text/javascript">
function chooseStyleAlt(days){
if (document.getElementById){
var selectedtitle=getCookie("mysheet")
if (selectedtitle=="orange")
chooseStyle('grey', days)
else
chooseStyle('orange', days)
}
}
</script>
<a href="javascript:chooseStyleAlt(60)">Switch between Gray and Orange style</a>
Bookmarks