jQueryを利用したWebサイトを作成しました。 http://lowrence.littlemarchen.jp/ 様々なブラウザでテストした結果、IEもしくはIEベースのブラウザでは以下のエラーが出ます。 >> メッセージ: 引数が無効です。 ライン: 113 文字: 478 コード: 0 URI: http://lowrence.littlemarchen.jp/scripts/jquery.js << Firefox/Chrome/Safari/Operaでは全く問題ありませんでした。 色々いじってみた結果、自分で書いた"index.js"に問題がありそうなのですが、イマイチ原因が特定できません。 原因を特定して解決してくださった方には、別にポイントを支払おうと思います。 以下のアプロダにサイト全体をzipで固めてアップしました。 よろしければお使いください。 http://ww
jQueryでボックスを上下左右中央に簡単配置 ボックスを上下左右の中央に配置したレイアウトにしたい時の話。もちろんjQueryというかjavascriptを使わなくてもCSSだけでそんな風にしたい場合なんかのやり方もあるのだけれど。そんな場合はCSS HappyLifeさんのこちらの記事がオススメです。 >>ボックスを上下左右画面中央に|CSS HappyLife 今回はjQuery Center pluginを使ってみる 先述の通り、CSSでもこうすればできるといった手法がいろいろあるわけだけど、jQueryのプラグインで秒殺できますよーというプラグイン「jQuery Center plugin」を使ってみます。 >>Plugins | jQuery Plugins ※プラグインなので当然jQuery本体も必要になります。 jQuery本体はこちら辺りからダウンロード。 親に対して、上
Today we want to share a little script with you that allows to create a tour on a website with jQuery. This can be very useful if you want to […] Today we want to share a little script with you that allows to create a tour on a website with jQuery. This can be very useful if you want to explain your users the functioning of your web application in an interactive way. You might have noticed that Fa
限られたスペースに設置するのに最適、コンテンツにスクロールバーを設置するjQueryのプラグインを紹介します。 スクロールバーのデザインはCSSで簡単にカスタマイズできます。
In this tutorial we are going to create some nice effects for a portfolio or similar website with jQuery. We will create a tiny slider and integrate it with the […] In this tutorial we are going to create some nice effects for a portfolio or similar website with jQuery. We will create a tiny slider and integrate it with the amazing Cloud Zoom plugin and the elegant Fancybox plugin. The idea is to
jQuery is slowly becoming ubiquitous in the web development arena all due to its easy to learn, easy to use and easy to extend nature. Here are 30+ fresh and amazing jQuery plugins and tutorials which i have hand-picked from jQuery articles or plugins published in last 30 days on the interwebs. If you are looking for latest on jQuery, then this is a must read for you.
When upgrading from version 2.x to 3.x it’s important to use version 3 CSS and .png files. Version 3 is backwards compatible but it’s also a huge overhaul. One significant change is that you don’t need to call the update method manually (the script does it automatically). For more info see changelog. Version 2 is still maintained and updated here. Get started Configuration Methods Styling Callback
Get every type of asset for any type of project, and access to AI tools From $16.50/m
2010年の人気エントリーまとめました! – MOLに触発されて(まねじゃない)振り返りもかねて僕も書きますです。 でも5月にドメインを変えたので5月からの集計です。それ以前も統合するのは主にめんどくさい的な理由でやりたくないです・・・アクセス数も全然多くないですけど、今年は初めてから今までで一番記事書いた気がする。特に12月に入ってからは14日以外の平日は毎日更新した・・・!どこかで誰かの役にたてばうれしいです 5月からの上位こんてんつ(セッション数) 1位: selectボックスをシンプルなプルダウンに拡張するjQselectable jQselectableとしてGooglecodeで公開したタイミングでPHP SPOTさんで紹介してもらって爆発しました。いやこれ本当におすすめなんで使ったことない方はぜひ。一番おすすめです。 2位: リアルタイムフォームバリデーション jQuery.
Ajaxやタブ切替には必須かも?ブラウザの「戻る」「進む」を有効にするjQueryのhashchangeプラグイン Ajaxやタブクリックなどのイベントでもブラウザの「戻る」「進む」を有効にすることができるjQueryのhashchange eventというプラグインを紹介します。同じような効果を得られるスクリプトより断然使いやすいのでおすすめです。 使い方はとても簡単で windowにhashchangeイベントをbindするだけです。 $(window) .hashchange(function() { Hoge(location.hash.replace('#', '')); }); // ハッシュフラグメントが変わったときにHoge()を実行する $(window).hashchange(); // Windowロード時に実行できる Ben Alman » jQuery hashc
指定位置までスクロールしたときにレイヤーを表示させることができます。 ブログを読み終わったあとに注意を引きたいレイヤーを表示して、ソーシャルサービス等への投稿などを促す効果も簡単に実装できます。(レイヤーの中身は別途必要です) 元ネタは、長谷川恭久さんのcouldから。「いかがでしたか?」というレイヤーが出てくるのですが同じような効果を簡単に実装できます。 上からにょきっと表示する以外にも、指定レイヤーをフェードやスライドで表示させたりできます。 動作サンプル a (上からにょきっと 動作サンプル b (フェード 必要なファイルを読み込む jQueryとm5noticeDisplay.jsを読み込みます。 任意の要素に対して実行する トリガーとする要素に対して実行します。トリガーとなる要素が画面内に入る直前あたりで注目させたいレイヤーを表示します。 HTML via: World Wide
JavaScript Advent Calendar 20105日目のago(@kyo_ago)です。 jQueryのソースを眺めててjQuery.stopに引数があることに気づいたので調べてみました。 まず、簡単なスライドダウンメニューを作ってみたいと思います。 jQuery.stop 1 - jsdo.it - share JavaScript, HTML5 and CSS JS部分は以下の通りです。 $(function () { $('div').hover(function () { $(this).find('ul').slideDown(); }, function () { $(this).find('ul').slideUp(); }); }); 少し触ると分かると思いますが、マウスがmenuから外れた後も何度も.slideDown、.slideUpが実行されるため非常に
Resources Best jQuery Plugins of 2010 Henry JonesDecember 2, 201027 Comments012.1k For our “Best of 2010” series we’ve already shown your our picks for best free WordPress themes and free fonts. So for this week the focus in on jQuery. This javascript framework continued to grow in popularity during 2010, which meant an abundance of plugins being released. This made it difficult to choose our favo
Today we will show you a nice effect for images with jQuery. The idea is to have a set of rotated thumbnails that, once clicked, animate to form the selected […] Today we will show you a nice effect for images with jQuery. The idea is to have a set of rotated thumbnails that, once clicked, animate to form the selected image. You can navigate through the images with previous and next buttons and wh
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
処理を実行中です
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く