codeigniter - limit of character to display in HTML or php -



codeigniter - limit of character to display in HTML or php -

i trying modify cmscanvas

cmscanvas.com

built in code igniter.

when utilize syntax in html file {{ service_description }} service_description name of field display text in field.

i trying limit of character display can't can't utilize php here.

how limit character html or other way?

i trying find out solution can't , there not special help on net too.

thanks

try solution javascript :

javascript

<script> var i; var divs = document.getelementsbytagname('div'); for(i=0;i<divs.length;i++) { if(divs[i].classname == 'myclass') { divs[i].innerhtml = divs[i].innerhtml.substring(0,200); } } </script>

php codeigniter

Comments

Popular posts from this blog

Delphi change the assembly code of a running process -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -

C++ 11 "class" keyword -