GULANGGULING.COM | KODING -Â Wuuuiiih akhirnya nulis babagan koding lagi. Kali ini mau berbagi sekalian mencatat soal ilmu atau cara membuat browser Chrome berwarna jika...
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 =...
Here we can do to change hyperlink underline color
<a href="change-underline-color.php"Â style="text-decoration: none; border-bottom: 1px solid #999999">change underline color</a>
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...