Jquery Chosen focus on page load (onLoad?)

后端 未结 8 1431
清酒与你
清酒与你 2020-12-20 11:59

I\'m using the Jquery Chosen plugin on a select box, however I\'d like to focus this on page load. I\'ve used the following code to focus a text input:

onLoa         


        
8条回答
  •  暖寄归人
    2020-12-20 12:55

    this is what worked for me

    jQuery("#fltrPerson_chzn a").addClass("chzn-single-with-drop");
                            jQuery(".chzn-drop").css({
                                "left": "0px",
                                "top": "24px"
                            });
    

提交回复
热议问题