Frage

I want to replace some kind of text occurrence in my html with some other text.

Actually I just want to remove chart ad that comes with free version of amcharts and I am wondering if there is a way to do it with jQuery?

The tag which contains this is:

<tspan y="6" x="0">chart by amcharts.com</tspan>

Any help? Thanks in advance

War es hilfreich?

Lösung

You could try to do something like this:

$("tspan").each(function(){
    if($(this).text()=='chart by amcharts.com'){
        $(this).text('');
    }
});

Andere Tipps

instead of removing it, please hide it using this

$("tspan").css('display','none');
 $(function(){
        $('tspan ').html('');
        });
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top