Tagged Questions
1
vote
3answers
61 views
How can I trim a text like this with jquery? [duplicate]
I have a bunch of title texts that get generated they all have different .Length but at a specific startindex of the string I want to find the closest space and then remove the text after it and also ...
0
votes
3answers
88 views
How to trim off last character in an Array - jQuery
so today I have an Array with several strings in them, all ending with , example: jazz, latin, trance,
I need to remove the , off the last element in the Array. Searching Stackoverflow I found ...
-1
votes
2answers
58 views
Which JavaScript trimming function is better?
We have built in method for all strings which can be accessed in this way:
" string ".trim(); // outputs: "string"
There is also a jQuery version of trim function, which we use in this way:
...
4
votes
2answers
118 views
Hide empty <li>
I want to hide all the <li> if they are empty or if there any blank space in <li>.
I am doing it like this:
$("li:empty").filter(function(i,v){return $.trim($(v).text()).length == ...
1
vote
2answers
62 views
jQuery - elegant way to trim() all elements in a doc?
More joy cleaning up auto-generated html. Plenty of extraneous spaces injected into tags:
<span>Lorem Ipsum </span> dolor sit... ( represents actual ...
1
vote
2answers
96 views
Jquery trim not working Japanese whitespaces
I just found that the jquery trim function (using 1.8.x) will not trim Japanese whitespaces.
Any better solution to this issue?
3
votes
4answers
585 views
How to use jQuery's trim() function
As discussed in many questions on stack - IE 8 wont accept .trim(), but the jQuery framework takes care of that.
I don't know how to translate my function to use that version of trim (I thought I ...
2
votes
2answers
96 views
What is a more elegant way to trim data with jQuery
I have the following jQuery code:
$(myObj).val( $.trim($(myObj).val()) );
From my experience with jQuery and it's elegant approach to common scripting tasks I feel like jQuery should provide a more ...
0
votes
4answers
994 views
jquery trim whitespace issue
I'm creating my own jquery plugin to format phone numbers.
Here are a few spans with some demo data.
<span class="formatMe"> </span><br />
<span ...
-4
votes
2answers
103 views
Need Help on JavaScript to Trim
I am facing some problems with my server space. The images are using all the space from the server, making it slow. As it is an eCommerce website, it cannot be slow or we lose customers.
If I have ...
1
vote
3answers
114 views
Shorten plain div text
I am using a service called 'embedly' which is showing my feeds. I'm trying to shorten the text of this feed, so I tried:
$('.description').html(
function(){
return ...
0
votes
2answers
283 views
using jquery trim in IE
I recently had trouble with the tablesorter.js where I couldnt sort by date because whitespace was breaking my script (tablesorter, wont sort by date correctly)
I finally figured this out and changed ...
0
votes
2answers
146 views
Substract two strings in javascript
kwd variable holds this value: news path:".aspx"
It is basically the query string of an url.
var path= "path:\".aspx\"";
so kwd= whatever user types passed to the url like this+path:
kwd=news ...
1
vote
2answers
266 views
IE Friendly Way in jQuery to determine if an element is empty or only contains whitespace or other empty elements?
I've found plenty of other topics similar to this one, but I they are all slightly unique... so here goes:
I'm trying to construct an IF statement based on whether an element is empty. However, ...
1
vote
4answers
208 views
Cross-browser ready new line counter in Javascript
I got 2 questions:
My function looks like that
function count() {
var value = ids.val();
return (value == '') ? 0 : value.replace(/\s,?|,$/g, '').split(/\r\n|\r|\n/).length;
}
What I ...
3
votes
3answers
387 views
javascript regex and trim everything after “dash”
For the html below, I am trying to put a variable to just "oakbarrels" and a variable to just "Dec 25, 2011". I have already been able to get the "Dec 25, 2011" with regex but I cannot figure out how ...
1
vote
2answers
2k views
Jquery - trim inner HTML?
I somehow need to trim() the innerHTML of my content... so I have something like this:
<div>
<b>test</b>
123 lol
</div>
I basically want to rid of the white ...
2
votes
1answer
98 views
jquery prevent auto trim while dynamically add table
I use jquery for adding table dynamically and I use this pattern:
var tbl = $("<table></table>").addClass("messageTable");
var tblRow = ...
1
vote
4answers
126 views
Trim string, but return the number of spaces removed from the start
I need to find out how many characters were removed from the start of the string, which is the value of a textarea input, so I can determine the new start position of the cursor selection.
$.trim() ...
1
vote
3answers
1k views
jquery trim leading zeros from date of format 01/02/2010
How do I trim javascript date object returned as 01/26/2012 into 1/26/2012?
it could be applicable for both month or days.
So 01/01/2012 should be trimmed as 1/1/2012.
Regular expression? jquery trim ...
7
votes
3answers
249 views
Is there a particular reason why jQuery's addClass() is not right-trimming?
<div id="myDiv" class=" blueberry mango "></div>
If we use the .addClass()
$("#myDiv").addClass("carrot");
The class for myDiv is now "(no-space)blueberry mango(double-space)carrot"
...
0
votes
4answers
147 views
How would you detect if an element is empty but has spaces and carriage returns to trim them with JavaScript / jQuery?
I'm trying to use $.trim() to trim whitespace in empty elements so I can check the length of an element to see if it has text content in it and if it does not then remove it from the DOM.
Some ...
0
votes
4answers
13k views
jQuery: $.trim() spaces between words in input.val()
I've seen some similar questions to mine here, but they don't really answer me...
So I'm doing this: (Inside the document ready function)
$("#dest").focusin(function() {
...
0
votes
1answer
468 views
Sanitizing a textarea value: trim white spaces in all lines
I've set the paste event to sanitize the textarea value. It already does everything I need, except one thing: trim white spaces at the beginning and end of all lines. Any ideas?
...
0
votes
4answers
586 views
JavaScript to trim after n characters
I have a HTML page which shows a Name dynamically. Now this name (FN LN) can be upto 240 charcaters. But at the UI side, I want to trim the FN/LN after about 50 characters and replace with ...
How ...
0
votes
3answers
276 views
How to slice a id and grab a number?
I have a jQuery id like
<div id="myid-page-top-0">
some stuff
</div>
I want to use jQuery to grab the "0" from the end of the #id. I have tried like
$('div').slice(-1,0);
But this ...
1
vote
4answers
2k views
Javascript jQuery strip leading and trailing spaces
I want to trim the value (strip leading and trailing spaces) and make first letter in every word capital. When user leave from the element (blur event)
HTML input as follows
<input ...
1
vote
3answers
3k views
jquery .trim() with textboxes
In a different post I made, someome explained that to check for blank values in text boxes and textareas you should use .val() with $.trim to check for blank values. For e.g.,
...
2
votes
3answers
1k views
jQuery trim doesn't remove ?
How can I trim all spaces from a string, even when they are caused by a non-breaking spaces ( )
For example:
var foo = $.trim($('<p> foo </p>').text());
The ...
3
votes
2answers
740 views
JavaScript trim line breaks with regex?
I am using Google Translate to translate the contents of a textarea and fill another textarea with the API response.
In my source textarea I am replacing the /n newlines with <br /> line breaks ...
0
votes
2answers
71 views
How do we trim text from arbitary start to arbitary end position?
How do I obtain a trimmed down inputted text ?
eg,
var txt = "Hello, how are you???";
To produce result like :
" how are you"
Here, I would like to remove the earlier "Hello," part and remove the ...
2
votes
3answers
3k views
Trim input field value to only alphanumeric characters/separate spaces with . with jQuery
So I'm trying to have an input field where I can enter any characters, but then take the inputted value lowercase it, remove any non alphanumeric characters, leaving "." instead of spaces.
For ...
1
vote
5answers
1k views
jquery: trim off the last part of an url
I have these URLs,
http://mysite.net/home
http://mysite.net/projects
http://mysite.net/links
And I want to trim off home, projects, links ect, so I only have this http://mysite.net/
But it should ...
1
vote
1answer
3k views
Get URL from background-image Property
i am currently using this to get the url from the background-image property:
var url = $(this).find('div').css('background-image');
url = url.substr(4, url.length - 5);
This works fine however in ...
0
votes
6answers
453 views
jquery trim text value and format
I have some jquery which grabs an elements id and places it into a textbox
The id of the textbox is automatically set so i can't change it.
I'm trying to trim the id and then format it so that it ...
0
votes
1answer
330 views
Transform HTML form in PHP include file to single line for feeding JQuery methods
I have a some.php with some php processing which also has:
<form action="" method="post">
<input type="text" name="name" value="bleh" />
<input type="submit" name="submit" ...
4
votes
3answers
6k views
jQuery Plugin “readmore”, trim text without cutting words
I'm using http://rockycode.com/blog/jquery-plugin-readmore/ for trim long text and add a "See more" link to reveal all the text.
I would love to avoid cutting words, how could I do that?
If the ...
1
vote
3answers
674 views
What is the best way to trim a json data?
This is what I am currently doing to trim all of my value. It is ugly and a too repetitive.
var strHTML = '';
$.getJSON('info.php',
function(data) {
$.each(data, function(i, item) {
...
18
votes
7answers
23k views
JavaScript: Parsing a string Boolean value?
JavaScript has parseInt() and parseFloat(), but there's no parseBool or parseBoolean method in the global scope, as far as I'm aware.
I need a method that takes strings with values like "true" or ...
2
votes
2answers
270 views
Is it possible to make trim in a selector?
I'd like to count all the inputs in my form which are empty. With empty I mean that its value is empty after trimming its value (if the user insert whitespaces its empty as well).
This jquery count ...
1
vote
2answers
218 views
Javascript Trim as is in C#
There is JQuery.trim() function but it is trimming the white spaces.
But I want to do it like in C#.
string props = ",width=400,height=400,status=0,location=0,";
props.Trim(',');
// result will be: ...
5
votes
4answers
15k views
Jquery trim to remove white space
Jquery trim not working. I wrote the following command to remove white space. Whats wrong in it?
var str = $('#txtbox').val();
str = jquery.trim(str);
$('#txtbox').val(str);
5
votes
6answers
6k views
Trim leading/trailing whitespace from textarea using jQuery?
following code is an example of text placed into a textarea from a database.
<textarea id="inputPane" cols="80" rows="40" class="pane">
<p>
some text here...
</p>
<p>
...
57
votes
5answers
18k views
IE8 and JQuery's trim()
I am making use of trim() like so:
if($('#group_field').val().trim()!=''){
Where group_field is an input element of type text. This works in Firefox but when I try it on IE8 it gives me this error:
...
2
votes
2answers
978 views
Why does Safari not like the .trim() in JQUERY?
This works fine in FireFox:
$("#listname").val().trim()
But in safari it errors: $("#listname").val().trim() while this does work, $("#listname").val()
Why is that?
15
votes
3answers
21k views
jQuery text truncation (read more style)
My question is very similar to "http://stackoverflow.com/questions/2104653/trim-text-to-340-chars" but in jQuery. It sounded very straight forward but when I searched around I couldn't find any ...
0
votes
1answer
1k views
Limit number of characters
I am appending a variable from an input to a li. I want to trim the P <p class="layer' + count + '"> '+ Xia2 +'</p> text to a number of 15 characters and not trim the SPAN, witch uses the ...
1
vote
7answers
13k views
Is there a way to use jQuery's serialize form fields and trim the value in the fields?
I have a form that uses jQuery to submit an ajax post and it serializes the form that is sent up. The code looks like this:
var form = $("form");
var action = form.attr("action");
var serializedForm ...
