/    Sign up×
Community /Pin to ProfileBookmark

Removing hard coded text

I work with in an application and there are some hard-coded text that I am trying to get rid of. Within the publicview of the page I need to remove/hide this…

<div align=center><font face=”arial” size=”1″>- OR -</font></div>

There are other div tags without classes or id in the code.

Anyone have any tricks up there sleves.

to post a comment
JavaScript

2 Comments(s)

Copy linkTweet thisAlerts:
@KorMay 10.2006 — var divs = document.getElementsByTagName('div');

for(var i=divs.length-1;i>=0;i--){

divs[i].firstChild.firstChild.data=='- OR -'?divs[i].parentNode.removeChild(divs[i]):null;

}
Copy linkTweet thisAlerts:
@kpikulauthorMay 10.2006 — Does this go into an onLoad?

If so, it is giving me a object expected error.
×

Success!

Help @kpikul spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 6.17,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @nearjob,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,
)...