Posted by Ed Jay on 12/04/24 11:36
Mark <mark@spam-me-senseless.com> wrote:
>Hi Ed
>
>This was the KILLER response I was looking for!!!
>
>Thanks for this my man! This will sort me right out :o)
>
>Thanks to everyone else for their responses too...
>
Here are the js:
function show(cont_id) {
target = document.getElementById(cont_id)
target.style.display = "";
}
function hide(cont_id) {
target = document.getElementById(cont_id)
target.style.display = "none";
}
function toggle(what,targetId) {
target = document.getElementById(targetId);
target.style.display = (what.checked)?'':'none';
}
--
Ed Jay (remove M to respond by email)
Navigation:
[Reply to this message]
|