NOISSUE Minify

This commit is contained in:
bnu 2014-01-03 11:10:00 +09:00
parent c5845c4758
commit bff1217303
3 changed files with 89 additions and 8 deletions

View file

@ -420,6 +420,11 @@ if(jQuery) jQuery.noConflict();
/* jQuery(document).ready() */
jQuery(function($) {
// Anchor: focus move to target
$('a[href^="#"]').click(function(){
$($(this).attr('href')).attr('tabindex','0').focus();
});
/* select - option의 disabled=disabled 속성을 IE에서도 체크하기 위한 함수 */
if($.browser.msie) {
$('select').each(function(i, sels) {