Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using the jQuery Chosen plugin to make select boxes more beautiful and searchable. For some reason it seems to not work properly; all options of the select box are visible on the page.

But on other pages the plugin seems to be working fine. I am not sure why this is happening on a particular page. I've tried all possible ways like removing other javascript, moving up and down but still no luck. Any directions on how I can resolve this issue?

Sample HTML block

<tr>
    <td class="right">Site: <span class="required">*</span></td>
    <td class="left">
        <select name="tkr.site.id" id="site_id_list" class="chzn-select" style="display: block;width:200px">
            #{list items:site_list, as:'site'}                  
                #{if tkr.site && site.id == tkr.site.id}
                    <option value="${site.id}"  selected>${site.name} (${site.shortname})</option>
                #{/if}  
                #{else}                     
                    <option value="${site.id}">${site.name}  ( ${site.shortname} ) </option>
                #{/else}
            #{/list}
        </select><br/>

        <span class="error">#{error 'tkr.site' /}</span>
    </td>
</tr>

Here's the header where I include jQuery and Chosen plugins:

<link rel="stylesheet"  type="text/css" media="screen"   href="@{'/public/stylesheets/jquery.treeview.css'}" type="text/css" />  
<link rel="stylesheet" type="text/css" media="screen" href="@{'/public/stylesheets/comments.css'}">
<link rel="stylesheet" type="tdeext/css" media="screen" href="@{'/public/stylesheets/chosen.css'}">

<script src="@{'/public/javascripts/jquery-1.4.2.min.js'}" type="text/javascript" charset="utf-8"></script>
<script src="@{'/public/javascripts/chosen.jquery.js'}" type="text/javascript" charset="utf-8"></script>

and javascript where iam calling chosen is

$(document).ready(function() {   

     $("form").submit(makeDateTimeProper);


     if ($("input[name=query]").length > 0 )
     {
         $("input[name=query]").corner();
         $("input[name=query]").focus();    
     }

     $(".chzn-select").chosen();



     var sdattime  = $("#content   input[name=tkr.startdatetime1]").val();
     var edattime  = $("#content   input[name=tkr.enddatetime1]").val();        
share|improve this question
Maybe you are calling it twice? – Morpheus Dec 14 '12 at 13:07
no iam calling only once – Rama Vadakattu Dec 14 '12 at 13:13
Can you please post the HTML and jQuery code you are using. – Rory McCrossan Dec 14 '12 at 13:16
@RoryMcCrossan included – Rama Vadakattu Dec 14 '12 at 13:24
Are you getting any errors in console log on that page? – Morpheus Dec 14 '12 at 13:52
show 3 more comments

1 Answer

Try {des pack plugins} is very complete. http://des.delestesoft.com:8080/?go=7

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.