This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function($) { | |
$.fn.fhconvert = function(type, options) { | |
var settings = $.extend({ | |
'jaCode':true, | |
'space':true, | |
'convSet':'object' | |
}, options); | |
$(this).each(function() { | |
var $this = $(this); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function($) { | |
$.fn.fhconvert = function() { | |
$(this).each(function() { | |
var $this = $(this); | |
//data属性を取得する。 | |
var $dataAttr = $this.data('fhconvert'); | |
//data属性がない場合は抜ける | |
if(typeof($dataAttr) === 'undefined') { | |
return true; |
NewerOlder