顯示具有 jQuery 標籤的文章。 顯示所有文章
顯示具有 jQuery 標籤的文章。 顯示所有文章

2011-02-20

Visually Connect HTML Elements: jsPlumb

這個功能很炫, 應用起來一定很棒, 我也要用.

http://jsplumb.org/jquery/demo.html

EditableGrid

Ya ~

Grid 的新應用, jQuery Base, Open Source, 現在不必擔心 Grid 的操作只要 Include 進來我們就有強大的 Grid 真酷 ~

http://www.webismymind.be/editablegrid/

厭倦了 jQuery UI ?

這個套件的本質是來自於 jQuery UI, 又多了一個新選擇, 漂亮的新 UI, 酷.

http://wijmo.com/widgets/

Zoomy, 類似 iPhone 的放大鏡, 很有趣



jQuery 有好多放大鏡的功能, 這種應用越來越多, 若你喜愛類似 iPhone 的放大鏡效果, 這個套件或許你會喜愛
http://redeyeoperations.com/plugins/zoomy/

2010-05-07

prototype.js 1.6.1 與 jQuery 1.3.2 再 IE8 上的問題與解決方式

IE8: fix for coexistence problem prototype.js (1.6.1) with jQuery (1.3.2)

我在專案上使用了, prototype.js version 1.6.1, 與 jQuery version 1.3.2

再 IE8 上遇到了問題,

IE8 說 : prototype.js 行 4811 有問題

var nodes = $(element).getElementsByTagName('*');

修正方式, 找到 prototype.js 行 4817 加入以下 script
if (Prototype.Browser.IE) { if (className == 'e') return []; }

就可以避開這個問題

想知道更多原因請看叁考連結

http://www.devcomments.com/IE8-fix-for-coexistence-problem-prototype-js-1-6-1-with-jQuery-1-3-2-at7993.htm

2010-03-23

Full Calendar, jQuery Calendar, 功能像 Google Calendar, 這個很棒

Full Calendar 是一個很類似 Google Calendar 的 jQuery Library,

建議下載使用它, 很方便, 又可以接 Google Calendar 所發怖的資訊,

就等於是自訂 Calendar 介面, 也可以擴充, 棒!

Full Calendar

2009-08-11

jQuery 操作 scrollbar

語法
$(window).scrollTop(100);
$(window).scrollLeft(100);

這樣可以去控制 scrollbar 的數值

若需要使用 animate 可以這樣使用

$('html, body').animate({
  scrollLeft : 1000},
  {quenu : false,
  step : function () {
  alert('正在移動中...');
},
  duration : 3000,
  complete : function () {
    alert('移動完畢!');
  }
);

animate 参數說明

http://docs.jquery.com/Effects/animate