[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.8

Jquery search and input tags

Asked by panosms in Jquery, JavaScript, Asynchronous Javascript and XML (AJAX)

Hello experts.
I 'm using the tutorial from jquery search :http://www.coldfusionjedi.com/index.cfm/2009/4/8/ColdFusion-jQuery-and-Search-Example.
Using this solution:http://www.experts-exchange.com/Programming/Languages/Scripting/JavaScript/Jquery/Q_24691857.html i can handle this with selects and text fields.
Now i need to know how i can handle  the rest of the input tags (checkbox,checkboxgroup,radiogroup,hidden fields).
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
<script src="jquery.js"></script>
<script>
 
$(document).ready(function() {
        $("#S_Hersteller_ID, #S_Preisbis").change(doSearch);
        $("#S_Modell").blur(doSearch);
});
 
function doSearch()
{
        //get the value
        var S_Modell = $("#S_Modell").val()
        var S_Hersteller_ID = $("#S_Hersteller_ID option:selected").val()
        var S_Preisbis = $("#S_Preisbis option:selected").val()
        $.get('resultscheck.cfm',{S_Modell:S_Modell,S_Hersteller_ID:S_Hersteller_ID,S_Preisbis:S_Preisbis},
                function(data,status) {
                        $("#numberOfResults").html(data)
                })
        return false;
}
 
</script>
 
 
<form  name="mytestform" id="mytestform" action="myresultpage.cfm">
          <select name="S_Hersteller_ID"  id="S_Hersteller_ID">
              <option value="">All</option>
               <option value="1">Test3</option> 
               <option value="2">Test4</option>
           </select>
           <br><br>
            <input  type="text" name="S_Modell" id="S_Modell" value=""/>
           <br><br>                
                           
                           
         <select name="S_Preisbis" id="S_Preisbis">
                <option value="" >All</option>
                <option value="1" >test</option>
                <option value="2" >test</option>
        </select>
          <br><br>
          
      <!-- Checkbox -->
      <input name="S_checkbox" type="checkbox" value="1" />
       <br><br>
      <!-- End Checkbox -->
      <!-- Checkbox group -->
      <p>
        <label>
          <input type="checkbox" name="CheckboxGroup1" value="10" id="CheckboxGroup1_0">
          Checkbox</label>
        <br>
        <label>
          <input type="checkbox" name="CheckboxGroup1" value="20" id="CheckboxGroup1_1">
          Checkbox</label>
        <br>
        <label>
          <input type="checkbox" name="CheckboxGroup1" value="30" id="CheckboxGroup1_2">
          Checkbox</label>
        <br>
      </p>
      <br><br>
      <!-- End Checkbox group-->
      <!-- Radio group -->
      <p>
        <label>
          <input type="radio" name="S_Radiogroup" value="1" id="S_Radiogroup_0">
          Radio</label>
        <br>
        <label>
          <input type="radio" name="S_Radiogroup" value="2" id="S_Radiogroup_1">
          Radio</label>
        <br>
      </p>
      <input name="S_hidden" type="hidden" value="10">
      <br>
      <input type="submit" value="Search" />      
 
</form>
 
<p id="numberOfResults">We'll put the number of results here</p>
[+][-]08/31/09 11:42 PM, ID: 25229024Accepted Solution

Your question has an Asker Certified™ answer! panosms verified that this solution worked for them--which means it will likely work for you, too. Click to view the solution free for 30-days now.

About this solution

Zones: Jquery, JavaScript, Asynchronous Javascript and XML (AJAX)
Sign Up Now!
Solution Provided By: anoyes
Participating Experts: 1
Solution Grade: A
 
 
Related Solutions
Keywords: Jquery search and input tags
 
Loading Advertisement...
 
[+][-]08/31/09 09:40 PM, ID: 25228556Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08/31/09 10:52 PM, ID: 25228824Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]08/31/09 11:17 PM, ID: 25228921Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08/31/09 11:29 PM, ID: 25228966Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09/01/09 12:05 AM, ID: 25229098Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09/01/09 12:28 AM, ID: 25229212Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09/01/09 04:27 AM, ID: 25230344Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09/01/09 08:51 AM, ID: 25232829Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09/01/09 02:57 PM, ID: 25236562Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20100308-EE-VQP-141 - Hierarchy / EE_QW_3_20080625
Your technology problems solved.
Close See Plans and Pricing. Try it FREE for 30 days.