21 March 2020

if jQuery contain and match value then replace with another value on load in jQuery?

if jQuery contain and match value then replace with another value on load in jQuery.




$(window).on("load", readyFn);
function readyFn() {
   $('#chart-container text').each(function() {
var ourText = $(this).text().toLowerCase(); // convert text to Lowercase
if(ourText.match('75%')) {
$(this).html( "h" );
}     
});

}

No comments:

Post a Comment

How to download/create content in doc from website by adding code in chrome console?

 Download/Create content in doc from website by adding code in chrome console function exportHTMLtoDoc(elementId, fileName = 'document...