I have this:
<span class="name"><span class="gost">Yahoo</span>, </span>
I tried something like this, but no luck:
$("span.name").html(
$(this).replace(/,/g, '')
);
|
Who can help me with regular expression , to remove some string with jquery, don't have much experience in regex
<div class="test" >
> > Test Text
</div>
I want to remove " > > " ... |
I want to continue one task because my head has some problem with a regular expression. How can it be done with a regular expression and jQuery?
I have this HTML:
<div class="test"> > > Presentation ...
|
I have a variable that has this string:
<DIV><SPAN style="FONT-FAMILY: Tahoma; FONT-SIZE: 10pt">[If the confirmation is active the subscriber will receive this email after succesfully confirming. If not, this will be the ...
|
I have the string R.E.M. and I need to make it REM
So far, I have:
$('#request_artist').val().replace(".", "");
...but I get RE.M.
Any ideas?
|
I have the following variable which is the selected text of a select box. This is the select box markup.
<select name="SELECT___100E___7">
<option selected="" value="25">Beige/Almond</option>
<option value="21">Blue [Subtract -$1.00]</option>
<option value="27">Chrome [Subtract -$2.00]</option>
<option value="29">Red [Add ...
|
I want to change the src of an image.
var string = "/images/myimage.png";
on mouseover I want to add _hover to myimage ("/images/myimage_hover.png")
and on mouseout I want to remove "_hover".
Does anyone have a ... |
|
I have the following option text that I want to put into a variable plus remove all characters except the value after the £ then convert it to a number. In ... |
What is the necessary regular expression to match the € special character from the following html string?
€20.000.000,00
Ultimately, I want to strip the € symbol from the number. Currently, my code looks ... |
I am trying to remove either « or » from a string to leave the remainding text in javaScript.
Have tried this to no effect:
$('body').delegate('.SearchPagination > a', 'click', function(e){
...
|
I have a string and I want to remove any - ,( ,) ,& ,$ ,# ,! ,[ ,] ,{ ,} ," ,' from the beginning or end of the word. ... |
I had a similar question posted previously but this is a little bit different. I am looking to remove the colon from the below price code utilizing jQuery. ... |
I have the following regex
/(\.|\/)(gif|jpe?g|png)$/i
Which works for fileNames in ensuring on gif, jpeg and png's are accepted. However, I want to extend this code to also check "fileNames" and ensure ... |
Re: [jQuery] Is there a way to use regex to remove text from a filename 3 years ago somthing like this is what you want have not got the time to finishthis good luck with the rest. may need a for loop instead |