Users Pricing

forum

home / developersection / forums / how to replace a word in a string using jquery?

How to replace a word in a string using JQuery?

Anonymous User 2263 31 Oct 2014
I've tried using replaceAll and replaceWith and they don't seem to work

for example, string

"~/Foo.aspx?fn=/image.jpg&p=True"

I want to do is replace p=True with p=False

var previewSource = "~/Foo.aspx?fn/image.jpg&p=True"
var loadedSource = $(previewSource).replaceAll("p=True").replaceWith("p=False");


I am a content writter !


1 Answers