<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/'><id>tag:blogger.com,1999:blog-19358050.post114549188049979711..comments</id><updated>2011-05-04T05:01:55.482-07:00</updated><category term='phpmyadmin'/><category term='mysql'/><category term='phpNuke'/><title type='text'>Comments on Tech Musings: Javascript Validation On Multiple Select Lists</title><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://www.mytechmusings.com/feeds/114549188049979711/comments/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/19358050/114549188049979711/comments/default'/><link rel='alternate' type='text/html' href='http://www.mytechmusings.com/2006/04/javascript-validation-on-multiple.html'/><author><name>Jim Epler</name><uri>http://www.blogger.com/profile/11899717198505004458</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='28' src='http://3.bp.blogspot.com/-l9CgE1ATl6Q/Tt5Prl1caWI/AAAAAAAAAVY/TO8iFjKbg4M/s220/me-avatar-490x423.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>5</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-19358050.post-2201605909221101259</id><published>2011-05-03T22:14:23.879-07:00</published><updated>2011-05-03T22:14:23.879-07:00</updated><title type='text'>Thanks dude, Helped me at time !</title><summary type='text'>Thanks dude, Helped me at time !</summary><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/19358050/114549188049979711/comments/default/2201605909221101259'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/19358050/114549188049979711/comments/default/2201605909221101259'/><link rel='alternate' type='text/html' href='http://www.mytechmusings.com/2006/04/javascript-validation-on-multiple.html?showComment=1304486063879#c2201605909221101259' title=''/><author><name>Ganesh D</name><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img1.blogblog.com/img/blank.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.mytechmusings.com/2006/04/javascript-validation-on-multiple.html' ref='tag:blogger.com,1999:blog-19358050.post-114549188049979711' source='http://www.blogger.com/feeds/19358050/posts/default/114549188049979711' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-254986197'/></entry><entry><id>tag:blogger.com,1999:blog-19358050.post-762436992181386181</id><published>2009-06-29T14:37:30.015-07:00</published><updated>2009-06-29T14:37:30.015-07:00</updated><title type='text'>I have a question on your second issue. What if th...</title><summary type='text'>I have a question on your second issue. What if the user selected something besides &amp;#39;other&amp;#39; for example &amp;#39;Math&amp;#39;, and also entered a value in the provided &amp;quot;Other&amp;quot; text input field. How would the validation change to make sure the user selected &amp;#39;other&amp;#39;?</summary><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/19358050/114549188049979711/comments/default/762436992181386181'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/19358050/114549188049979711/comments/default/762436992181386181'/><link rel='alternate' type='text/html' href='http://www.mytechmusings.com/2006/04/javascript-validation-on-multiple.html?showComment=1246311450015#c762436992181386181' title=''/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img1.blogblog.com/img/blank.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.mytechmusings.com/2006/04/javascript-validation-on-multiple.html' ref='tag:blogger.com,1999:blog-19358050.post-114549188049979711' source='http://www.blogger.com/feeds/19358050/posts/default/114549188049979711' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-335490076'/></entry><entry><id>tag:blogger.com,1999:blog-19358050.post-25915999563134113</id><published>2009-02-18T16:31:00.000-08:00</published><updated>2009-02-18T16:31:00.000-08:00</updated><title type='text'>I was able to use the method by which you referenc...</title><summary type='text'>I was able to use the method by which you referenced the SELECT element to streamline the validation.  It is simple, just to see if anything was selected.&lt;BR/&gt;&lt;BR/&gt;if  (form_name["multiple_select_name[]"].value == "")&lt;BR/&gt;   {&lt;BR/&gt;    alert("Please choose at least one option.");&lt;BR/&gt;    form_name["multiple_select_name[]"].focus();&lt;BR/&gt;    return (false);&lt;BR/&gt;   }</summary><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/19358050/114549188049979711/comments/default/25915999563134113'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/19358050/114549188049979711/comments/default/25915999563134113'/><link rel='alternate' type='text/html' href='http://www.mytechmusings.com/2006/04/javascript-validation-on-multiple.html?showComment=1235003460000#c25915999563134113' title=''/><author><name>Jefferson Miner</name><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img1.blogblog.com/img/blank.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.mytechmusings.com/2006/04/javascript-validation-on-multiple.html' ref='tag:blogger.com,1999:blog-19358050.post-114549188049979711' source='http://www.blogger.com/feeds/19358050/posts/default/114549188049979711' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-633274048'/></entry><entry><id>tag:blogger.com,1999:blog-19358050.post-4672940970853472915</id><published>2008-10-27T00:27:00.000-07:00</published><updated>2008-10-27T00:27:00.000-07:00</updated><title type='text'>Wow! thanks for this post..It helps me a lot..Keep...</title><summary type='text'>Wow! thanks for this post..It helps me a lot..Keep it up!</summary><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/19358050/114549188049979711/comments/default/4672940970853472915'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/19358050/114549188049979711/comments/default/4672940970853472915'/><link rel='alternate' type='text/html' href='http://www.mytechmusings.com/2006/04/javascript-validation-on-multiple.html?showComment=1225092420000#c4672940970853472915' title=''/><author><name>bevs</name><uri>http://www.blogger.com/profile/09444339232272588361</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://bp0.blogger.com/_-uXJIPdfthc/SGhsdsfw6EI/AAAAAAAAAFs/T_7XYgyNqmI/S220/bevs+suarez.JPG'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.mytechmusings.com/2006/04/javascript-validation-on-multiple.html' ref='tag:blogger.com,1999:blog-19358050.post-114549188049979711' source='http://www.blogger.com/feeds/19358050/posts/default/114549188049979711' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1612825679'/></entry><entry><id>tag:blogger.com,1999:blog-19358050.post-1070600383134412146</id><published>2007-11-08T15:10:00.000-08:00</published><updated>2007-11-08T15:10:00.000-08:00</updated><title type='text'>How did you model that "Other" custom field in you...</title><summary type='text'>How did you model that "Other" custom field in your database design?  e.g. I'm assuming your multi-select list items were each rows in a table...but  did that custom value the user could enter go in that same table?</summary><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/19358050/114549188049979711/comments/default/1070600383134412146'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/19358050/114549188049979711/comments/default/1070600383134412146'/><link rel='alternate' type='text/html' href='http://www.mytechmusings.com/2006/04/javascript-validation-on-multiple.html?showComment=1194563400000#c1070600383134412146' title=''/><author><name>Dan</name><uri>http://www.blogger.com/profile/00082847411771904826</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.mytechmusings.com/2006/04/javascript-validation-on-multiple.html' ref='tag:blogger.com,1999:blog-19358050.post-114549188049979711' source='http://www.blogger.com/feeds/19358050/posts/default/114549188049979711' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1607457250'/></entry></feed>
