Question : removed exchange from email accounts and now I can't find the emails I had before

We are presently using POP3 and I removed Exhange from email accounts because it kept on interfering with my email.

Answer : removed exchange from email accounts and now I can't find the emails I had before

better?
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
<html>
<head>
<title>Example</title>
</head>
<body>

<div>
<input type="checkbox" name="a" value="1" />
<input type="checkbox" name="b" value="2" />
<input type="checkbox" name="c" value="3" />
</div>

<script type="text/javascript">
 var inputs = document.getElementsByTagName("input"); //or document.forms[0].elements;  
 for (var i = 0; i < inputs.length; i++) {  
  if (inputs[i].type == 'checkbox') {  
    inputs[i].onclick=function() { alert('A checkbox value was changed');
    }
  }  
 }  
</script>

</body>
</html>
Random Solutions  
 
programming4us programming4us