Wednesday, 18 May 2016

javascript - Replace HTML Tag with another HTML

I am trying to replace some HTML Tag with another HTML Tag with php or jquery .



My Current Tag (Default) :







I want to replace above HTML tag with










Example :



Default tag :

tag



Replaced tag :

tag



I already search many articles on stackoverflow but didnt founded solution for it.



Thank in advance

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...