Wednesday, July 15, 2009

[javasoftware] network security software and easy programming language http://programminglangu, 7/16/2009, 12:00 am



Reminder from:   javasoftware Yahoo! Group
 
Title:   network security software and easy programming language http://programminglangu
 
Date:   Thursday July 16, 2009
Time:   All Day
Repeats:   This event repeats every day.
Notes:   network security software and easy programming language

http://programminglanguage-magha.blogspot.com

Study abroad scholarships
A Website Dedicated to Study abroad scholarships
Scholarship.SuperbResources.

http://studentloan-magha.blogspot.com


UK University Study
by online distance learning Browse courses online now!

http://studyonline-magha.blogspot.com

 
Copyright © 2009  Yahoo! Inc. All Rights Reserved | Terms of Service | Privacy Policy


__._,_.___


Cloud Computing Education: http://www.OperationBadar.net



Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe

__,_._,___

[Java Developers] network security software and easy programming language http://programminglangu, 7/16/2009, 12:00 am



Reminder from:   java_developers Yahoo! Group
 
Title:   network security software and easy programming language http://programminglangu
 
Date:   Thursday July 16, 2009
Time:   All Day
Repeats:   This event repeats every day.
Notes:   network security software and easy programming language

http://programminglanguage-magha.blogspot.com

Study abroad scholarships
A Website Dedicated to Study abroad scholarships
Scholarship.SuperbResources.

http://studentloan-magha.blogspot.com


UK University Study
by online distance learning Browse courses online now!

http://studyonline-magha.blogspot.com

 
Copyright © 2009  Yahoo! Inc. All Rights Reserved | Terms of Service | Privacy Policy


__._,_.___


Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe

__,_._,___

[a1ajavajobs] Do you need some advice for business software?, 7/15/2009, 2:00 pm



Reminder from:   a1ajavajobs Yahoo! Group
 
Title:   Do you need some advice for business software?
 
Date:   Wednesday July 15, 2009
Time:   2:00 pm - 3:00 pm
Repeats:   This event repeats every day.
Notes:   Business software is generally any software program that helps a business increase productivity or measure their productivity. Here directory of reviewed business and enterprise software solutions.

Just click here

http://business-software-go.blogspot.com/
 
Copyright © 2009  Yahoo! Inc. All Rights Reserved | Terms of Service | Privacy Policy


__._,_.___


Visit our webring of links to find for your interests.
http://home.earthlink.net/~rko153/webring/




Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe

__,_._,___

[a1ajavajobs] Looking for a good auto insurance policy that will have both a good coverage., 7/15/2009, 1:00 pm



Reminder from:   a1ajavajobs Yahoo! Group
 
Title:   Looking for a good auto insurance policy that will have both a good coverage.
 
Date:   Wednesday July 15, 2009
Time:   1:00 pm - 2:00 pm
Repeats:   This event repeats every day.
Notes:   Just click here

http://auto-insurance-quotes-go.blogspot.com/
 
Copyright © 2009  Yahoo! Inc. All Rights Reserved | Terms of Service | Privacy Policy


__._,_.___


Visit our webring of links to find for your interests.
http://home.earthlink.net/~rko153/webring/




Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe

__,_._,___

[a1ajavajobs] Broker Tips and Strategies, 7/15/2009, 12:00 pm



Reminder from:   a1ajavajobs Yahoo! Group
 
Title:   Broker Tips and Strategies
 
Date:   Wednesday July 15, 2009
Time:   12:00 pm - 1:00 pm
Repeats:   This event repeats every day.
Notes:   A broker is a party that mediates between a buyer and a seller. Your starting point for the best investment resources on the web. Stock exchanges will give you the opportunity of investment and fund sourcing.

Just click here

http://broker-go.blogspot.com/
 
Copyright © 2009  Yahoo! Inc. All Rights Reserved | Terms of Service | Privacy Policy


__._,_.___


Visit our webring of links to find for your interests.
http://home.earthlink.net/~rko153/webring/




Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe

__,_._,___

[javasoftware] Microsoft Research's Project Tuva



http://research.microsoft.com/apps/tools/tuva/index.html



__._,_.___


Cloud Computing Education: http://www.OperationBadar.net



Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe

__,_._,___

[JavaScript] IE7 reloads after function executes

Hi All,

I have a problem with IE reloading after a simple function is executed. The problem occurs after the data is sent to the input element in a form. Here is the code for the form:
<div id="mailBody">
<form id="frmMailBody" action="../php/mailer.php" method="post" onSubmit="return chkForm(this)">
<p><a href="#" onclick="getData('../php/addressbook_ajax.php');showMe('addressBook')">To</a>: <input name="to" id="to" value="" type="text" /></p>
<p><a href='#' onclick="showMe('fromAddy')">From:</a> <input name="from" id="from" value="<? echo $_SESSION['email']; ?>" ></p>
<p><textarea style="width:400px; height:200px; overflow:auto" name="body"></textarea></p>
<p><input type="submit" name="submit" value="Submit"><input type="reset" value="Clear"></p>
</form>
</div>
Here is the JS code:
function selectAddresses(){

var inputElements=document.getElementsByTagName("input");
var toEmail=document.getElementById("to");
var toEmailValue=toEmail.value;

for(i=0;i<inputElements.length;i++){
if(inputElements[i].getAttribute('type')=='checkbox'){
if(inputElements[i].checked){
//alert(inputElements[i].value);
//alert(inputElements[i].getAttribute('value'));
if(toEmailValue==""){

toEmailValue=inputElements[i].value;
}else{
toEmailValue=toEmailValue+";"+inputElements[i].value;
}
}
}
}
toEmail.value=toEmailValue;
hideMe("addressBook");
}

I don't know if anyone else had this problem with IE. The code works like magic in Chrome and FireFox. So I do not know what would cause IE to reload.

Thanks for any input.

Max.

------------------------------------

Visit http://aiaiai.com for more groups to joinYahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/JavaScript_Official/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/JavaScript_Official/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:JavaScript_Official-digest@yahoogroups.com
mailto:JavaScript_Official-fullfeatured@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
JavaScript_Official-unsubscribe@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/