
jQuery
文章平均质量分 81
sanshi_zhang
专注于前端(JavaScript、jQuery、ExtJS)
展开
-
jStore - Persistent storage solution in client-side
Today, hans notify me that there is a persistent storage solution in client-side in the form of jQuery plug-in called jStore.Below is self-explanation:A powerful plugin which gives jQuery the ab原创 2013-06-24 11:27:04 · 825 阅读 · 0 评论 -
纯手工打造漂亮的瀑布流,五大插件一个都不少Bootstrap+jQuery+Masonry+imagesLoaded+Lightbox!
前两天写的文章《纯手工打造漂亮的垂直时间轴,使用最简单的HTML+CSS+JQUERY完成100个版本更新记录的华丽转身!》受到很多网友的喜爱,今天特别推出姊妹篇《纯手工打造漂亮的瀑布流,五大插件一个都不少Bootstrap+jQuery+Masonry+imagesLoaded+Lightbox!》,希望大家喜欢! 前言FineUI控件库发展至今已经有 5 个年头,目前论原创 2013-08-05 08:37:17 · 2533 阅读 · 0 评论 -
Use IE userdata behavior as a client-side data storage
I described how to use jStore as a client-side persistent storage in my last post. The jStore manage a number of different storage engines, such as gears and flash objects. But they all need additiona原创 2013-06-24 11:27:09 · 614 阅读 · 0 评论 -
jQuery tips and tricks - 2
1. How to judge element is visible ? if($(".nav").is(":visible")) { // This element is visible }This filter is very power, for example: This element is hidden. if ($原创 2013-06-24 11:28:00 · 606 阅读 · 0 评论 -
jQuery tips and tricks - 1
There are many articles about jQuery tips and tricks on the internet.I am very happy to have so many resources for reference, and i will make my ownexamples in order to learn these tips and tric原创 2013-06-24 11:27:55 · 646 阅读 · 0 评论 -
jQuery plugin - metadata
Today, when reading an article - A Plugin Development Pattern, i found an interesting plugin - metadata.First, let’s see it in action: Item 1 Item 2 {"item_id": 1, "item_lab原创 2013-06-24 11:28:20 · 688 阅读 · 0 评论 -
Step by step to create a jQuery tabs plugin - 3
First, i want to add options to Tabs constructor like this: var tabs = $("div.tabs").tabs({ "openEvent": "mouseover", "disabled": [1, 2], "current": 3 }); T原创 2013-06-24 11:28:07 · 546 阅读 · 0 评论 -
Step by step to create a jQuery tabs plugin - 2
I have said that i dislike jQuery UI’s unified API, so i want toget the instance of the component after invoke like this: $(function() { var tabs = $("div.tabs").tabs(); // N原创 2013-06-24 11:28:04 · 512 阅读 · 0 评论 -
jQuerify Bookmarklet
Reference: jQuerifyBookmarklet, Updated jQuery Bookmarklet and Better, Stronger, Safer jQuerify BookmarkletWhat is jQuerify Bookmarklet?A jQuerify Bookmarklet is a hyperlink that can be dragged原创 2013-06-24 11:28:22 · 668 阅读 · 0 评论 -
Step by step to create a jQuery tabs plugin - 1
Just as the auther of jQuery Tools said:jQuery UI has a so-called “unified API” which uses the following syntaxfor invoking methods:// call select method for tabs $("ul.example").tabs("select"原创 2013-06-24 11:28:02 · 535 阅读 · 0 评论 -
Observer pattern in JavaScript
The observer pattern (a subset of the asynchronous publish/subscribe pattern) is a software design pattern in which an object, called the subject, maintains a list of its dependents, called ob原创 2013-06-24 11:27:51 · 665 阅读 · 0 评论