Hello I have this code in HTML :
<td id="t_startdate">2019-04-29 00:00</td>
And I would like to get 2019-04-29 00:00
using jquery I tried this :
var start = $('#t_startdate');
But when I try to show the variable start with :
alert(start);
I get undefined
Could you help me please ?
Thank you !