Question : Send emails using listed, jquery

For example I have listed some emails on a html page.
How to send emails to these using jquery (and sendemail.php which I am ok with) . Just need the jquery part.
Thanks.

Answer : Send emails using listed, jquery

Not tested, but is the attached what you are looking for?
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>

<script type="text/javascript">
$(document).ready(function(){
	$(".divclass").each(function(){
		email = $(this).html();
		$.post("sendemail.php", { email: ""+email+"" },
  			function(data){
     		//do something after each email
   		});
	});
});
</script>

<div id="a" class="divclass">[email protected]</div>
<div id="b" class="divclass">[email protected]</div>
<div id="c" class="divclass">[email protected]</div>
<div id="d" class="divclass">[email protected]</div>
<div id="a" class="divclass">[email protected]</div>
Random Solutions  
 
programming4us programming4us