JavaScript : Operators

greator than :>= less than :<=

jQuery each object, element

var $collection = $("ul &gt; li"); $collection.each(function(index, element){ console.log("index is "+index); ...

JavaScript : Define an empty array

var emptyArray =[]; var newEmptyArray= new Array(); These two are the same, and []; is simpler way. There is no ne...

JavaScript : global variable and scope, function declaration

"name" variable in thecode belowoutputs "undefined". var name = "Baggins"; (function (...

JavaScript : function declarations vs function expressions

Basically, there are two ways to define a JavaScript function. function white(){}; var declare= function white(){}...
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...

Drush command reference

This is a useful drush command reference site.

Drupal7でContextを使ってブロックを追加すると”[page name] could not be found.”と表示される件

Contextモジュールを使ってPathを指定しブロックを追加すると、 デフォルトの/pagename could not be found.と表示される。 Contextではあくまで条件指定のみでページは作成されていないため、...

Dru;al7 Image style:ResizeとScaleの違い

Resize : 画像の伸縮や圧縮を通して画像のサイズを変更する Scale:画像の縦横の比率を保持したままサイズを変更する

Drupal7で特定のjQueryのバージョンをjQuery Multiモジュールを使用して指定する

以前書いたようにViewsUIとMasonryを一緒に使おうとすると特定のバージョンのjQueryを指定する必要がある。 Drupal7 Views UI 7.x-3.xとjQuery 1.8以降の互換性 jQuery Upda...
タイトルとURLをコピーしました