Tag: jquery
Images Reflection With CSS / Javascript
How to create a images reflection on your web ?
After search and learn by googling. We have two way to make reflection on image....
Download Drupal e-book
Download Drupal e-book tutorial ?
Drupal E-book Part 1
e-book Using Drupal.pdf
Front End Drupal.pdf
Learning.Drupal.6.Module.Development.May.2008.pdf
Leveraging Drupal.pdf
Pro Drupal Development, Second Edition.pdf
Selling...
Change Font-Size Editor Zend Studio
Many of the fonts and colors and used by eclipse components can be set using theĀ General > Appearance > Colors and Fonts preference page.
Limit character textarea using Jquery
Here we can do, copy this jquery plugins :
jQuery.fn.maxLength = function(max){
this.each(function(){
//Get the type of the matched element
var type = this.tagName.toLowerCase();
//If the type property exists,...
TinyMCE produce P elements
This is way If you want to change new line in TinyMCE with <br/> character :
For the display you can use a simple CSS...
Jquery Check All
Here we can do with jquery, check all checkbox with name parameters :
sample code :
function checkallitems(){
var arr=$("input']");
if($('#contestall').attr('checked')==true){
for(var i=0;i<arr.length;i++){
$(arr).attr('checked','checked');
}
}else{
for(var i=0;i<arr.length;i++){
$(arr).attr('checked',false);
}
}
}
note :
contest is the name of...