Link to home
Start Free TrialLog in
Avatar of joyacv2
joyacv2Flag for Puerto Rico

asked on

value in jQuery not working

Hi

I have the following code applies to td in a table:

$(".cerrado").click(function(){
		$(this).html('<input type="text" value='+$(this).text()+'>')
		$(this).unbind('click');
		});

Open in new window


my problem is that when a td have that contains 04/17/2015 16:05:44, then when click only appears 04/17/2015

what i can do?
ASKER CERTIFIED SOLUTION
Avatar of Rainer Jeschor
Rainer Jeschor
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of joyacv2

ASKER

perfect!