jQuery each object, element var $collection = $("ul > li"); $collection.each(function(index, element){ console.log("index is "+index); ... 2016.07.02
JavaScript : Define an empty array var emptyArray =[]; var newEmptyArray= new Array(); These two are the same, and []; is simpler way. There is no ne... 2016.07.02
JavaScript : global variable and scope, function declaration "name" variable in thecode belowoutputs "undefined". var name = "Baggins"; (function (... 2016.07.02
JavaScript : function declarations vs function expressions Basically, there are two ways to define a JavaScript function. function white(){}; var declare= function white(){}... 2016.07.01
Uncategorized Drupal7 Webform : How to create a single checkbox choose the "Select options" type, enter the value and label, then choose the "Multiple" advanced setting (even if you ju... 2016.06.29 Uncategorized
Drupal7でContextを使ってブロックを追加すると”[page name] could not be found.”と表示される件 Contextモジュールを使ってPathを指定しブロックを追加すると、 デフォルトの/pagename could not be found.と表示される。 Contextではあくまで条件指定のみでページは作成されていないため、... 2016.06.27
Dru;al7 Image style:ResizeとScaleの違い Resize : 画像の伸縮や圧縮を通して画像のサイズを変更する Scale:画像の縦横の比率を保持したままサイズを変更する 2016.06.27
Drupal7で特定のjQueryのバージョンをjQuery Multiモジュールを使用して指定する 以前書いたようにViewsUIとMasonryを一緒に使おうとすると特定のバージョンのjQueryを指定する必要がある。 Drupal7 Views UI 7.x-3.xとjQuery 1.8以降の互換性 jQuery Upda... 2016.06.24