Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| .navbar | |
| .caret | |
| .label | |
| .table | |
| .img-responsive | |
| .img-rounded | |
| .img-thumbnail | |
| .img-circle | |
| .sr-only | |
| .lead |
| function en2bn(input){ | |
| var en = ["1","2","3","4","5","6","7","8","9","0"]; | |
| var bn = ["১","২","৩","৪","৫","৬","৭","৮","৯","০"]; | |
| input = input.toString(); | |
| for( var i = 0; i <= 10; i++) | |
| { | |
| input = input.replace( en[i] , bn[i] ); | |
| } | |
| return input; | |
| } |