I need jquery to change numbers in all of pages. for example i want change 1 to ۱ so i tried this way:
$("*").each(function(){
$(this).html( $(this).html().replace(1,"۱") );
})
but this will change css rules and attributes also. is there any trick to escape css and attributes?