№10
Убрать пробельные символы из начала и конца строки
var str = " lots of spaces before and after ";
console.log('"'+$.trim(str)+'"');
"lots of spaces before and after"
Источник:
api.jquery.com
api.jquery.com
Убрать пробельные символы из начала и конца строки
var str = " lots of spaces before and after ";
console.log('"'+$.trim(str)+'"');
"lots of spaces before and after"