I have a jquery function that changes a text inside a element using a jquery \"text\" function. Inside this td element is child \"a\" tag like this.
-
2021-01-17 20:06
Working Code !!
using child-selector > with pseudo-class :first-child
const changeIt = () => {
$('div.v3 > a:first-child').text('New Text');
}
|