1
vote
1answer
22 views

Rstrip based on regex in Javascript

I'm trying to validate a list of email addresses client-side. These addresses are separated by a comma or a semi-colon. They typically look like this: 'fake@mail.com; another@mail.com; ' ...
2
votes
2answers
319 views

Typing text effect with formatting: skip HTML tags, but don't remove

I am trying to provide a simple way to get a typing text effect, but with the possibility to allow HTML tags too. I have some code that works, but I see the tags are being considered part of the text. ...
-1
votes
2answers
39 views

Javascript function to strip user ID from URL

i need a javascript function to strip the user ID from a given URL. for example. i have this URL http://www.example.com/member.php?id=100001877097904 how can i retrieve the ID of the user from that ...
0
votes
5answers
61 views

Javascript strip decimal from numeric

I'm using Math.random to generate a random string passed in an ajax call. The problem is that the string generated contains a decimal, and the server interprets this as a file.ext (which of course ...
0
votes
3answers
97 views

Strip after a “.” from input value

I have this script that is changing the value of an input field. The output I want is like: A-Z. (A. and B. end so on) How can I achieve that everything after the "." is being stripped. <script ...
0
votes
2answers
346 views

Whitelist javascript to strip html tags

I have modified a whitelist javascript regex that strip unwanted tags. I am trying to allow this code: <span style="color: #000000"></span> but I am unable to do it in regex. Bellow ...
0
votes
1answer
256 views

strip characters from url on javascript 'onclick'-command

I'm afraid this may be a very stupid question. I want to refer people via a pop-up and automatically fetch the url from the current document (so that I don't have to adapt the code to every page). ...
1
vote
5answers
231 views

Remove part of filename with jQuery

I want to strip a filename like this: IMG_6903.JPG&width=504 to: IMG_6903.JPG ... My script looks like this: $(function(){ $('#exposure img').each(function(){ var $imgSrc = ...
0
votes
2answers
464 views

With jQuery, how do I keep only the first sentence of some HTML, and keep the formatting?

Let's say I have some HTML like so: <div id="text">This <i>is</i> a <b>test</b>. Do <i>not</i> be <b>alarmed</b>.</div> I'd like to use ...
1
vote
2answers
568 views

Strip image src from given html

The html contains images path like <img src="/testsite/images/abc.jpg" /> I want javascript to convert all images src to be like <img src="images/abc.jpg"/> Simply saying I want to ...
3
votes
4answers
945 views

How do I strip all javascript out of an HTML document using PHP?

In my email program I use Tidy to clean up the HTML before I send out the emails. A problem is beginning to persist that if I send a mail fetching the html from a url on the web there may exist some ...
0
votes
2answers
341 views

Strip out 0 and any non number characters Javascript

How could I change this code to not allow a 0 and to strip out all non number characters? <script type="text/javascript"> (function() { var a= document.getElementsByName('a')[0]; ...
0
votes
3answers
68 views

find the text and the strip the text at a certain point

I am trying to write this funtion to grab the text value and then strip the text from after the - symbol and the - symbol itself. eg some text - is found would become some text This is ...
1
vote
1answer
1k views

strip span tags from string with jquery

I am wanting to take the text value of a p tag when I press enter $.keynav.enterDown = function () { var accom = $('#suggestions p.keynavon').html(); alert(accom); } This is working great but ...
1
vote
5answers
179 views

Stripping texts in a variable : javascript

Consider variable like var url='http://www.example.com/index.php?id=ss'; or var url='http://www.example.com/dir1/dir2/index.php'; In these variables, i want to get only the domain part i.e ...
40
votes
7answers
45k views

String strip() for javascript?

What's a clean and efficient Javascript implementation to strip leading and trailing spaces from a string? For example: " dog" "dog " " dog " " dog " all get turned into "dog"