Tag: web development
Pertama kali menggunakan Laravel 4
Setelah sekian lama muncul framework ini dan sudah sering dengar dari teman, akhirnya baru kali ini saya mencobanya sekarang. Walaupun hanya sebatas instalasi dan membuat yang sederhana ada baiknya saya tulis...
Coming Soon Template
Buka buka arsip lama, nemu beberapa catatan lama tersimpan, sebuah cerita dahulu, iya dahulu. Seonggok file yang ditolak oleh themeforest. Iya saya pernah ditolak,...
Google Web Designer
Google meluncurkan sebuah aplikasi yang sangat menggiurkan untuk dicoba. Aplikasi itu bernama Google Web Designer. Aplikasi ini masih tahap beta tapi sudah cukup istimewa. Bagi...
Gunung Api Indonesia
Mengejutkan sekali!! Pagi hari muncul hujan abu vulkanik dari Gunung Merapi, itu terjadi sesaat setelah saya post cerita mengenai museum merapi. Bagi saya ini benar...
Setting Up HMVC in CodeIgniter 2.1.2
This article about how to setup Hierarchical Model-View-Controller (HMVC) on CodeIgniter 2.1.2. Here we go the step how to seting up on CodeIgniter 2.1 :
Download wiredesignz HMVC...
Font-Size em vs px vs pt vs percent
So, What’s the Difference?
It’s easy to understand the difference between font-size units when you see them in action. Generally, 1em = 12pt = 16px =...
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...