For those who know JQuery – must be effort less question –
I’d like to get the elemenet which is the last child of another element (of type ‘input’ that I know its ID (‘myID’).
What is the correct query:
I tried:
$("input:last-child", $("#myID"));
$("#myID input:last-child")
But it didn’t work
Try: