$Date="2012-06-01"
list($year1, $month1, $day1) = preg_split('[-]', $Date);
Monday, September 2, 2013
Radio button select event
$('input[name=radio_box_name]:radio').click(function(){
alert("y=test");
});
Labels:
jQuery
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]
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"); }); });
$(document).ready(function(){ $("input[name='radio_btn_name']").change(function(){ alert("test"); }); });
Labels:
jQuery
Subscribe to:
Comments (Atom)