質問

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

役に立ちましたか?

解決

You could try to do something like this:

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

他のヒント

instead of removing it, please hide it using this

$("tspan").css('display','none');
 $(function(){
        $('tspan ').html('');
        });
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top