I have some jquery which grabs an elements id and places it into a textbox
The id of the textbox is automatically set so i can't change it.
I'm trying to trim the id and then format it so that it reads properly
Here's my HTML
<a id="day_2294_110_2011-6-2" class="weekday" href="javascript:;">Day</a>
<input type="text" id="therapydate" />
And my jQuery
$('.weekday').click(function() {
$('#therapydate').val($(this).attr('id'));
});
This puts the value of my textbox to day_2294_110_2011-6-2 but i'd like to remove this day_2294_110_ and just be left with 2011-6-2 and then format that as a date like this 2nd June 2011 or 02/06/2011
Is this possible?
Thanks