22Oct/09Off
10 jQuery and non-jQuery javascript Rich Text Editors
10 amazing free rich text editors that will boost your website functionality. I have collected 5 jQuery and 5 non-jQuery RTEs that come with simple features to office-like features.
16Jun/09Off
Jquery Selector Filter Samples
Some Jquery Selector Examples
$(’div.panel’)
All divs with class=“panel”
$(’p#intro’)
The paragraph with id=“intro”
$(’div#content a:visible’)
All visible links inside the div with id=“content”
$(’input[@name=email]’)
All input fields with name=“email”
$(’input[id*=plan]’)
All input fields whose id contains string ‘plan’
$("table.striped > tr:odd")
Odd rows in a table with a striped class
$(’a[@href^="http://"]’)
All external links (links that start with http://)
$(’p[a]’)
All paragraphs that contain one or more links
$("p:even");
All even <p> elements.
$("tr:nth-child(1)");
The first row of each table.
$("body > div");
Direct <div> children of <body>.
$("a[href$=pdf]");
Links to PDF files.
$("body > div:has(a)")
Direct <div> children of <body>-containing links.
$("td:empty)")
Empty table cells
$(’#plugins td.name’).filter(’:contains(ImageManager)’)
In the <div id=plugins>, find <td class=name> which contains the text ImageManager
1Dec/08Off
Jquery : Toggle Div
2 method var.
1.
function togcontent(tid)
{
$('div.'+tid+'.hiddenbox').toggle();
$('div.'+tid+'.togbutta').toggleClass('togbutta_active');
}
2.
function togcontentt(tid)
{
$('#'+tid+' div.hiddenbox').toggle();
$('#'+tid+' div.togbutta').toggleClass('togbutta_active');
}
30Nov/08Off
Jquery: show/hide multiple elements independently
Hiding a single element with Jquery was pretty straightforward. But what about if you want to show/hide multiple elements independently?
http://andylangton.co.uk/articles/javascript/jquery-show-hide-multiple-elements/
3Oct/08Off
47+ Excellent Ajax CSS Forms
Forms needs a solid visual structure, a profound hierarchy of form elements (Fields and Labels), powerful techniques and Functionality (AJAX) to make the form look and work creatively. There is a great bunch of creative, outstanding and individually designed from scratch forms.
28Jun/08Off
240 plugins jQuery
Mon framework javascript préféré jQuery permet de faire plein de choses jolies et ergonomiques, il peut faire beaucoup plus lorsqu’on lui attache des plugins. Dont voici une liste non exhaustive
A noter le lancement d’un nouveau site avec des plugins, tutoriaux, exemples avec jquery.
28Jun/08Off
100+ Scripts pour JQuery
Voici une liste complète de scripts ( ou plug-ins ) mais non exhaustive pour les développeurs Ajax sous JQuery
28Jun/08Off
clueTip Plugin
The clueTip plugin allows you to easily show a fancy tooltip when the user's mouse hovers over (or, optionally, clicks on) any element you designate in your script. If the element includes a title attribute, its text becomes the heading of the clueTip.
28Jun/08Off
jQuery AlphaNumeric
by Paulo P. Marinas
Did you ever found a need where you want to prevent your user from entering certain characters?
Looking at the plugins available at jQuery, i found a great plugin by Sam Collet called Numeric.