javascript - jQuery: noConflict bugging Script -
hello stackers,
to long things short, few months ago i've asked question jquery script, , that's fixed , working: fiddle here. however, need noconflict function, otherwise script crash other scripts.
i follow guide on jquery site, , result;
$.noconflict(); jquery(document).ready(function(){ $("#div1").hide(); $("#div2").hide(); $("#div3").hide(); $("#div4").hide(); $("#div5").hide(); $("#pick_go").click(function() { var openid = $("#pick_select").val(); $("#div1").hide(); $("#div2").hide(); $("#div3").hide(); $("#div4").hide(); $("#div5").hide(); $("#div" + openid).fadein(); }); }); this, however, break script, on jsfiddle. doing wrong?
Comments
Post a Comment