Monday, September 2, 2013

PHP preg_split

 $Date="2012-06-01"

list($year1, $month1, $day1) = preg_split('[-]', $Date);

Radio button select event


$('input[name=radio_box_name]:radio').click(function(){
            alert("y=test");
});

Friday, August 30, 2013

Farewells notes

Hi All,

As all of you know, today is my last day here at [company].  I would like to sincerely thank you for all the good times we've had over the last two and half years. I shall sorely miss you all (especially our development team), and your friendship and support. I would like to thank you all for the mentoring and support you have given me during my time here.

I can be reached at my personal email address ([your email]) or on my mobile at [ your mobile no]. Please keep in touch!

Thanks again for everything!

Kind regards,
[Your name]


Wednesday, February 6, 2013

Select Radio Button

This is a way of selecting a radio button using jQuery.

$(document).ready(function(){ $("input[name='radio_btn_name']").change(function(){ alert("test"); }); });