-1
votes
1answer
31 views

Removing characters from a string passed from an HTML page [duplicate]

I'm trying to trim a string of some character so I can put it in an SQL query. An example of what is being passed to my method is "\n asdw_value\n". I want the "\n"s and the space to be removed, but I ...
0
votes
2answers
87 views

Trim overflow text in css? [duplicate]

Is it possible to trim the ending of the text? INPUT this is an extremely very long text RESULT this is an ...
4
votes
2answers
121 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 == ...
0
votes
2answers
73 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
0answers
143 views

How to trim spaces and new lines rendered by a CKEditor?

I'm using a CKEditor (along with a CKFinder). I need to validate the contents rendered by it before storing into a database. If the contents rendered by the CKEditor is blank then a validation ...
1
vote
4answers
260 views

Stop users from registering spaces in their usernames

I've encounted an error, my registeration form allows users to register usernames with spaces ie, "user name" when it should be just "username" with no spaces. I've tried searching and reading many ...
-3
votes
4answers
298 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() ...
3
votes
3answers
1k views

PHP check if user typed something in text input

I have a few simple html text inputs. I would like to check that the user inputted something and not just spaces. My code below isn't working. HTML (in a form): <input type='text' name='email' ...
0
votes
4answers
594 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 ...
2
votes
2answers
3k views

How do I change my code to avoid warning “should trim empty <div>”

I use 'class' when I need CSS function. For example, when I want to use clear: left; I make a class .clear {clear: left;} and use it in HTML file. But there is always the warning should trim ...
0
votes
1answer
332 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" ...
0
votes
1answer
301 views

Change Which Side of a Background Image is Trimmed When its Container Changes Size?

I have a div (with a background image) and the image's width is 40px. Now when I change the width to 20px it trims the image's right side. Is there any way to make it trim the left side instead? ...
6
votes
2answers
18k views

CSS: How to limit text shown with using “…” [duplicate]

Possible Duplicates: Is it possible to implement the effect of overflow:ellipsis with javascript or css? How do I indicate long text into a smaller fixed column with CSS? I want to trim ...