Forum Moderators: open
and here is my JS
//this function shows the link to get
//coordiantes manually if the checkbox is checked
function showLink() {
//if the checkbox is checked
if (document.getElementById('overRide').checked) {
//set the span to visible
document.getElementById('linkSpan').style.visibility = "visible";
} //if .checked
else {
//set the span to hidden
document.getElementById('linkSpan').style.visibility = "hidden";
}
} //showLink
//this function displays the over ride tool tip
//when a user hovers over the over ride checkbox
function showOverRide() {
var toolTip = $find("<%= overRideTip.ClientID %>");
if (!(toolTip.isVisible())) {
toolTip.show();
} //if ! issvisible
} //showOverRide
I posted the showOverRide function but it works fine. I just posted it in case it might have something to do with this since they both go on the same checkbox click. Thanks,
[edited by: eelixduppy at 1:12 am (utc) on Sep. 2, 2009]
[edit reason] example.com [/edit]