Answers for "replace in jquery"

7

replacing characters in string javascript

var myStr = 'this,is,a,test';
var newStr = myStr.replace(/,/g, '-');

console.log( newStr );  // "this-is-a-test"
Posted by: Guest on October-20-2020
3

jquery replace text

$('#id1 p').each(function() {
    var text = $(this).text();
    $(this).text(text.replace('Kate', 'Nef')); 
});
Posted by: Guest on January-09-2021
64

javascript replace string

var str = "JavaScript replace method test";
var res = str.replace("test", "success");  
//res = Javscript replace method success
Posted by: Guest on July-10-2020
31

javascript replace

var res = str.replace("find", "replace");
Posted by: Guest on October-21-2019
0

replace jquery

$("p:first").replaceWith("Hello world!");
Posted by: Guest on April-27-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language