Advertisement
Guest User

Untitled

a guest
Aug 29th, 2015
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. function checkWidth() {
  2. if ($(window).width() < 1280) {
  3. $("#limit-char").each(function(i){
  4. len=$(this).text().length;
  5. if(len>30)
  6. {
  7. $(this).text($(this).text().substr(0,30)+'...');
  8. }
  9. })
  10. }
  11. }
  12.  
  13. $(window).resize(checkWidth);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement