javascript - Remove specific HTML with jQuery on Tumblr Theme? -


i'm trying mimic new tumblr text post removes blockquotes important text visible in 250px text post without having scroll. of course tumblr hasn't updated entire code blockquotes still wrapped in custom themes.

here's have far: http://01244235.tumblr.com/

i unwrapped blockquote tag. want remove links of users have commented.

i know there isn't simple way of unwrapping entire thing until tumblr updates codebase. i'm going remove links entirely.

so there way pick specific part of code , remove it? don't want remove href links because actual text post might have in it.

so want remove every <p><a class="tumblr_blog" href=""></a></p> post.

any ideas?

in case write:

$('p .tumblr_blog').remove(); 

but why not remove {blockquote} tags theme, rather relying on front end solution. or hide using css:

p .tumblr_blog {    display:none; } 

Comments

Popular posts from this blog

java - Static nested class instance -

c# - Bluetooth LE CanUpdate Characteristic property -

JavaScript - Replace variable from string in all occurrences -