Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Having lots of trouble here, any help would be appreciated. Currently I have:

$.fn.customSelect = function() {
    // define defaults and override with options, if available
    // by extending the default settings, we don't modify the argument
    return this.each(function() {  
        obj = $(this);  
        obj.after("<div id=\"selectoptions\"> </div>");
        obj.find('option').each(function(i){ 
            $("#selectoptions").append("<div id=\"" + $(this).attr("value") + "\" class=\"selectitems\"><span>" + $(this).html() + "</span></div>");
        });
        obj.before("<input type=\"hidden\" value =\"" + this.value + "\" name=\"" + this.name + "\" class=\"customselect\"/><div id=\"iconselect\">" + this.title + "</div><div id=\"iconselectholder\"> </div>")
           .remove();
        $("#iconselect").click(function(){
            $("#iconselectholder").toggle(0);
        });
        $("#iconselectholder").append( $("#selectoptions")[0] );
        $(".selectitems").mouseover(function(){
            $(this).addClass("hoverclass");
        });
        $(".selectitems").mouseout(function(){
            $(this).removeClass("hoverclass");
        });
        $(".selectitems").click(function(){
            $(".selectedclass").removeClass("selectedclass");
            $(this).addClass("selectedclass");
            var thisselection = $(this).html();
            $("select").val(this.id);
            $("#iconselect").html(thisselection);
            $("#iconselectholder").toggle(0)
        });
    });  
    // do the rest of the plugin, using url and settings
}

...which does populate #iconselectholder with the select text, but the select value does not populate the hidden input value.

What do I need to add/change? Thanks

share|improve this question
Are you saying it does not initially populate the hidden input or that it does not change when you click a .selectitems object? – Jacob Feb 23 '12 at 2:01
@Jacob I mean it doesn't change when a .selectitems object is clicked. I can see why it doesn't change but I don't know what to add to make it... Thanks – gbal30 Feb 23 '12 at 16:12
Anyone have any ideas? – gbal30 Feb 26 '12 at 10:41

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.