Skip to content

Instantly share code, notes, and snippets.

@niwaringo
niwaringo / jQuery.fhconvert_old
Created January 26, 2012 15:54
jQuery Plugin fhconvert old ver
(function($) {
$.fn.fhconvert = function(type, options) {
var settings = $.extend({
'jaCode':true,
'space':true,
'convSet':'object'
}, options);
$(this).each(function() {
var $this = $(this);
@niwaringo
niwaringo / jQuery.fhconvert.js
Created January 26, 2012 15:29
jQuery Plugin fhconvert data-attr ver
(function($) {
$.fn.fhconvert = function() {
$(this).each(function() {
var $this = $(this);
//data属性を取得する。
var $dataAttr = $this.data('fhconvert');
//data属性がない場合は抜ける
if(typeof($dataAttr) === 'undefined') {
return true;