Wednesday, November 23, 2011

Friday, November 11, 2011

My Faceblog

I'm done doing the css of my blog. Now it looks like facebook homepage. But the real thing is, this is faceblog. hahahahha:D

Tuesday, November 8, 2011

checkbox act like a radio button code:

jQuery:
jQuery('.chck').click(function(){
jQuery('.chck:checked').not(this).removeAttr('checked');
});

html:
<input class="chck" type="checkbox" name="chckBox"/> Mr.
<input class="chck" type="checkbox" name="chckBox"/> Mrs.
<input class="chck" type="checkbox" name="chckBox"/> Ms.