*{
padding: 0;
margin: 0;
}
ol{
list-style: none;
}
ol > li{
padding-left: 20px;
position: relative;
margin: 10px;
}
ol > li:before{
content: '✔';
position: absolute; top: 0; left: 0;
color: yellow;
}
<ol>
<li>list</li>
<li>list</li>
<li>list</li>
<li>list</li>
</ol>
<script>
$(document).ready(function() {
$('[name=phone]').bind("change keyup input click", function() { // Указываешь имя поля где нужно отказать ввод текста в поле
if (this.value.match(/[^0-9]/g)) {
this.value = this.value.replace(/[^0-9]/g, '');
}
});
});
</script>
</<tbody>
</<table>
</tbody>
</table>