Tagged Questions
1
vote
3answers
58 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 ...
-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:
...
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?
0
votes
2answers
72 views
Removing unwanted characters from HTML page using JavaScript
I am not a very professional JavaScript programmer. I want to ask that is it possible to remove all unwanted characters (like newlines and also comments if possible) from HTML page source code using ...
0
votes
2answers
75 views
Extract all matches from given string
I have string:
=?windows-1256?B?IObH4cPM5dLJIA==?= =?windows-1256?B?x+HYyO3JIC4uLg==?= =?windows-1256?B?LiDH4djj5s3Hyg==?= =?windows-1256?B?Rlc6IOTP5skgKA==?=
I need to extract all matches ...
2
votes
3answers
67 views
Javascript to determine date and output either “time” if it is today, “yesterday” for yesterday, and the actual date if it is before then
I am creating an simple email client and I want the inbox to display the date that the email was received in the format:
Today at 13:17
Yesterday at 20:38
13 January at 17:15
21 December 2012 @ ...
0
votes
3answers
129 views
Trim String on both ends using javascript [duplicate]
Possible Duplicate:
How do I trim a string in javascript?
I have below string which comes from ajax response
"\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\r\n\tERROR: Profile : NOT SUCCESS\nCODE ...
0
votes
1answer
41 views
trim of string doesnt display in IE prior to 9
{{if inventory.title.length > 38}}
<p class="p1">
{{>(inventory.title.substring(0, 38) + '...').trim()}}
</p>
How do i correct this code ...
-4
votes
3answers
82 views
Delete space in String Javascript
I have a string: '__that is image';
I want delete spaces(__) in front of 'that' (result is: 'that is image')
How can I do.
3
votes
4answers
514 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 ...
0
votes
0answers
895 views
TypeError: Cannot call method “split” of undefined for trim function
I am writing code for syncing Google spreadsheets with Google calendar. There is a trim function which is supposed to trim the title of an entry, in order to check if that title has already been ...
0
votes
1answer
98 views
Javascript, remove parameters from links
What I am trying to do is to create a small Chrome extension that will automatically trim the &bar= parameter from a list of links
So a link such as:
...
0
votes
1answer
68 views
Why do I get the error IE Trim method isn't supported? [duplicate]
Possible Duplicate:
.trim() in JavaScript not working in IE
i have the following code but in IE it says that the trim method is not supported.
for (var i = 0; i < here.length; i++) ...
-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 ...
0
votes
2answers
71 views
Function trim in js with regexp
I want obtain from string piece, except beginning and ending spaces ( function trim() in php)
I want make this witch regexp, in php I make this, here my code
$str = " a s d ";
$mytrim = ...
0
votes
2answers
688 views
What do I get an error with highcharts, only in IE8
The charts are working ok in most browsers, including firefox and Opera. However in IE I am getting:
Object doesn't support this property or method
report_graph.js
Code: 0
URI: ...
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 ...
1
vote
2answers
902 views
trim non-ascii characters from string returned by nodejs crypto
I have successfully decrypted a sensitive data using nodejs crypto library.
The problem is that the decrypted data has a trailing non-ascii characters.
How do I trim that?
My current trim function ...
6
votes
3answers
2k views
trim() function doesn't work in IE8?
Whenever I use trim() function, it works fine with Chrome and FireFox but I get an error in IE8 saying :
Object doesn't support this property or method
Can anyone tell me why this happens and if ...
2
votes
2answers
1k views
Javascript Split Space Delimited String and Trim Extra Commas and Spaces
I need to split a keyword string and turn it into a comma delimited string. However, I need to get rid of extra spaces and any commas that the user has already input.
var keywordString = "ford ...
2
votes
2answers
175 views
Mysterious garbage character - IE 8 only
I am building a table, with content pulled from other elements in the page (page scraping).
I am using innerText or textContent to pull the text, then a regular expression to trim it:
...
-3
votes
4answers
296 views
Remove whitespaces inside a string in javascript [closed]
I've read this question about javascript trim
But I can not make it work. Even a hello world!
<html>
<head>
<script type="text/javascript">
function myFunction()
...
0
votes
4answers
763 views
triming <br> tag in javascript using regular expressions
I have a regex that I wanted to trim the <br> of a variable
str1.replace(/^<br>|<br>$/g,'');
example i want to trim a string something like this
var str1 = ...
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
4answers
207 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 ...
1
vote
2answers
227 views
javascript Regex trim up to 'space' AND 'dash' or match
I asked a similar question before and got the correct response. This time though I would rather try and get two variables for the name after the 'By' and the 'Date' separately.
The problem with the ...
3
votes
3answers
384 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 ...
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 ...
0
votes
2answers
105 views
Strip URL of JavaScript
I have a URL that contains a lot of JavaScript.
I want to strip the URL of all JavaScript using of course JavaScript!
Here's my HTML
<a id="product_photo_zoom_url" ...
2
votes
5answers
182 views
Trimming a string from the end in Javascript
In Javascript, how can I trim a string by a number of characters from the end, append another string, and re-append the initially cut-off string again?
In particular, I have filename.png and want to ...
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
4answers
571 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 ...
-1
votes
2answers
314 views
Split a string with JavaScript
the following code works for me, but seems to be quite long-winded. Can i shorten it?
var str = "some title of an event here, weekday 17:00 – 18:00 o’clock, with name of a ...
0
votes
3answers
303 views
Removing Unwanted Spaces Using javascript
In my application i want to remove the unwanted space from starting and ending.And also if there have more than space between words also remove them leaving one space.
How can i do this?
1
vote
1answer
429 views
Trim transparent background of an image drawn in Canvas with PHP or javascript
I have created an image in my Canvas with HTML5 and I saved it. My code looks like the one here, in this example:
...
0
votes
4answers
737 views
How can I use this trim function for my textbox
How can I apply this trim function: var trimmed = str.replace(/^\s+|\s+$/g, '') ; to this code below so that if a textbox contains whitespaces, it will display message "Incorrect"? Also If I use this ...
5
votes
4answers
3k views
javascript need to do a right trim
In javascript, how to I do a right trim?
I have the following:
var s1 = "this is a test~";
var s = s1.rtrim('~')
but was not successful
0
votes
2answers
251 views
Trim and WhiteSpaceTrimmer
Respected One.
I face One problem in javascript .What it is now i am using dojo componets in jsp page.So i changed trim function into WhiteSpaceTrimmer function.but it is working in mozilla firfox ...
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 ...
4
votes
2answers
5k views
Javascript trim a string to length
How can I, using Javascript, make a function that will trim string passed as argument, to a specified length, also passed as argument. For example:
var string = "this is a string";
var length = 6;
...
3
votes
2answers
725 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 ...
3
votes
1answer
499 views
Trim and <br> tags from String java or javascript
I want to remove starting and trailing br and nbsp tags from a string using java or javascript.
Input and desired output are hosted in jsfiddle.net because Stackoverflow is not letting me to post ...
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 ...
0
votes
3answers
84 views
Allow at most 3 consecutive whitespaae charecters
I'll get some info from an user using textarea. But he can not type 3 consecutive white space characters, so i invested this code :D
function trim(myString)
{
str = myString;
str = ...
9
votes
5answers
11k views
Replace all whitespace characters
Hiii, i want to replace all the occurrence of white space characters [space, tab, newline] in JavaScript.
How to do so ?
i tried
str.replace(/ /gi, "X")
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
3answers
396 views
php trim won't work
So I have a server side ajax php file:
$thing = "\n\ncode\n";
echo(trim($thing, '\n'));
But when I use this php file for an ajax call, the responseText does not have newlines removed!
var xhr7 ...