View Single Post
ישן 08-11-09, 20:38   # 5
אדיר
עסק רשום [?]
 
מיני פרופיל
תאריך הצטרפות: Mar 2008
מיקום: אשקלון
הודעות: 1,714

אדיר לא מחובר  

קוד:
function search() {
   var searchb = document.getElementById('query').value;
   if(searchb.length < 1)
      return false;
   else
     return true;
}

<form ... onsubmit="return search();">
  Reply With Quote