No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
[QUOTE=davecoventry;1244140]I didn't get any help from anyone here, but I think I've managed to solve it. At least the code seems to work. [CODE]<style> .menu { list-style: url("openIcon.png");} .menu_none { list-style: none;} .submenu{ display: none; list-style: none; margin-left: 20px; } </style> <script language="JavaScript" type="text/JavaScript"> function toggle(id) { var toggle_block = …
Do you not have a stylesheet (css)? It's messy but an alternative...give your table an Id then in the pageload: [CODE] tableId.Attributes.Add("style", "background-color:#ccc"); [/CODE]
If you have a <form> tag wrapping the form could you add an onblur attribute which calls the checkExit() function when the form loses focus? Not tested but something like... [CODE] form1.Attributes.Add("onblur", "return checkExit();"); [/CODE]
The End.
ollystretton