/**
* @Author: Arash Karimzadeh
* @Email:
* @Desciption: Here, I post some of my recent
* researches. Also you can see my code projects.
*/
Home
Codes
Search
Articles
Downloads
Ajax
C #
Chrome
CMS
dateNet
Design Patterns
includeMany
JavaScript
jBind
Joomla
jQuery
Plugin
rails
ror
RubyOnRails
SQLite
xul
+ All tags
Content View Hits
: 336903
Search
1.
dateNet (jQuery, Date and .Net)
(Matching tags: C #,Plugin,jQuery,dateNet)
dateNet is a
jQuery
function which is two-way time converter.Can convert javascript Date object to .Net date format which can be passed to dotNet services (.svc files). It also can convert back the date ...
2.
Chainclude (jQuery pluign for including js and css in a sequence)
(Matching tags: jQuery,includeMany)
Include JS and CSS in a sequence. This plugin let you to include files as chain and is now merged with $.includeMany which you can find out more about it by reading this article or just reading the chainclude ...
3.
includeMany (jQuery Include CSS, JS, HTML Plugin)
(Matching tags: includeMany,jQuery,Plugin)
includeMany is
jQuery
plugin for including many external JavaScript, CSS and HTML files simultaneously in runtime. This plugin provides callback for each of the files and in addition there is finallyCallback ...
4.
jQuery Fill (by data)
(Matching tags: jBind,jQuery,Plugin)
When you want to fill a part of your html once and show it. You can use $(selector).bind(data,); which require jBind plugin. jBind will bind will first find the html content of matched selector and fill ...
5.
jBind 1.5.1 to 1.5.2
(Matching tags: jQuery,jBind)
jBind 1.5.1 has been updated to 1.5.2. jBind 1.5.2 and Ext-JS As Paul Chu, Paul B reported there was a bug when you include ext-js to your file. This bug occurs because of extending Array.prototype in ...
6.
jBind 1.5.0 to 1.5.1
(Matching tags: Plugin,jBind,jQuery)
jBind 1.5.0 has been updated to 1.5.1. This new version support Partial template, now you can bind parts of your aggregate data to a template.
7.
jBind (jQuery Template) Latest Version
(Matching tags: jBind,jQuery,Plugin)
jBind is
jQuery
templating engine for binding any complex data to templates in an easy way. By using $(template).bindTo(data) you can bind your data to the template. In version 1.5.3 actions are enabled ...
8.
jBind (jQuery Bind Template) 1.0.0-beta
(Matching tags: jBind,jQuery,Plugin)
jBind is
jQuery
plugin for binding any complex data to templates in an easy way. By using $(template).bind(data) you can bind your data to the template. This Plugin is Updated, please check here. Download ...
9.
How to Extend jQuery Editable
(Matching tags: JavaScript,jQuery,Plugin)
We can extended
jQuery
Editable plugin by extending its $.editableFactory. currently it supports text, password, textarea and drop-down. Let's see how we can extend it to support checkbox. You can download ...
10.
Editable (jQuery Editable Plugin)
(Matching tags: jQuery,Plugin,JavaScript)
This is a real customizable
jQuery
editable plugin. Currently it can convert any tag (span, div, p and ...) to text input, password, textarea, drop-down list. You can easily extend it by adding your own ...
11.
jQuery: Add variables to Ajax Callback
(Matching tags: JavaScript,jQuery,Ajax)
jQuery
's Ajax methods are great. They are easy to use. You passed the data to server and in callback method you can use the data which server provided for you. This Asynchronous mechanism is great but ...