Jquery 1.7 以降はすべてモジュラー読み込みをサポートしていますが、jquery はデフォルトで amd をサポートし、cmd はサポートしません。そのため、seajs を使用して jquery を読み込む場合は、次の内容を少し変更する必要があります。具体的な変更方法は次のとおりです。
入れてください
if (typeof define === "function" && (define.amd)) { define( "jquery", [], function() { return jQuery; }); }
に変更されました
if (typeof define === "function" && (define.amd || define.cmd)) { define( "jquery", [], function() { return jQuery; }); }
if (typeof define === "function") { define( "jquery", [], function() { return jQuery; }); }