S
S
Sergey750il2021-07-17 23:57:47
JavaScript
Sergey750il, 2021-07-17 23:57:47

How to remove year from html markup using JS?

Hello. How to remove year from such html markup using pure js or jquery?

<b><span class="startdate" >2 августа 2021</span> — 23 августа</b>

Answer the question

In order to leave comments, you need to log in

1 answer(s)
0
0xD34F, 2021-07-18
@Sergey750il

el.innerText = el.innerText.split(' ').slice(0, -1).join(' ');
// или
el.innerText = el.innerText.replace(/\s\S+$/, '');
// или
el.innerText = el.innerText.match(/.+(?=\s)/);
// или
el.innerText = el.innerText.slice(0, el.innerText.lastIndexOf(' '));

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question