about summary refs log tree commit diff
path: root/web/javascript/searchtip.js
diff options
context:
space:
mode:
authorPjotr Prins2015-03-30 10:26:50 +0200
committerPjotr Prins2015-03-30 10:26:50 +0200
commit949d056c60f0b8ff4b9ffedaa08ca12d60e26ddf (patch)
treea34c2c887905d3fe25331a43f77ca41aaf9c7abf /web/javascript/searchtip.js
parent38594c7781b587a24be14b9631a73662ee3fdc2b (diff)
parent67d7d982f96cfd0f3dcb9806ecc6d2f947af9dc9 (diff)
downloadgenenetwork2-949d056c60f0b8ff4b9ffedaa08ca12d60e26ddf.tar.gz
Merge branch 'master' into lmm
Diffstat (limited to 'web/javascript/searchtip.js')
-rwxr-xr-xweb/javascript/searchtip.js64
1 files changed, 0 insertions, 64 deletions
diff --git a/web/javascript/searchtip.js b/web/javascript/searchtip.js
deleted file mode 100755
index 5665bc1d..00000000
--- a/web/javascript/searchtip.js
+++ /dev/null
@@ -1,64 +0,0 @@
-// search tips for 'Get Any' and 'Combined' in the main search page http://www.genenetwork.org/
-function searchtip(){
-
-	var tfor     = document.getElementById("tfor");
-	var tfand    = document.getElementById("tfand");
-	var btsearch = document.getElementById("btsearch");
-	var tiptextor  = "Enter list here (APOE, APOA, etc.): logical OR";
-	var tiptextand = "Enter terms to combine (blood pressure): logical AND";
-
-	if(tfor.value == "" || tfor.value == tiptextor) {
-		tfor.className = "searchtip";
-		tfor.value = tiptextor;
-	}
-	
-	tfor.onfocus = function(e) {
-		if(tfor.value == tiptextor) {
-			tfor.value = "";
-		}
-		tfor.className = "";
-	}
-	tfor.onblur = function(e) {
-		if(tfor.value == "") {
-			tfor.className = "searchtip";
-			tfor.value = tiptextor;
-		} else if(tfor.value == tiptextor){
-			tfor.className = "searchtip";
-		} else {
-			tfor.className = "";
-		}
-	}
-
-	if(tfand.value == "" || tfand.value == tiptextand) {
-		tfand.className = "searchtip";
-        tfand.value = tiptextand;
-	}
-    
-	tfand.onfocus = function(e) {
-		if(tfand.value == tiptextand) {
-			tfand.value = "";
-        }
-		tfand.className = "";
-    }
-	tfand.onblur = function(e) {
-		if(tfand.value == "") {
-			tfand.className = "searchtip";
-			tfand.value = tiptextand;
-		} else if(tfand.value == tiptextand) {
-			tfand.className = "searchtip";		
-		} else {
-			tfand.className = "";
-		}
-    }
-	
-	btsearch.onclick = function(e) {
-		if(tfor.value == tiptextor) {
-			tfor.value = "";
-		}
-		if(tfand.value == tiptextand) {
-			tfand.value = "";
-        }
-		return true;
-	}
-	
-}