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