Need Help Removing Content

Jan 4, 2011

My goal with a script I am writing is to remove signatures from a forum I am a part of. Some of the people abuse it with half a page of stuff and it's out of control. So here is what the HTML source code for it looks like

<table cellSpacing="1" width="100%" border="0" class="tback" cellPadding="2">
<tr>
<td width="100" class="headcell">Author</td>
<td class="headcell">Topic</td>
</tr>[CODE]...

The very bottom where it has the 'span' tag and it says "SEC Champions" is where the Signatures are located. I want to completely remove that using my script and this is what I have right now

function sigRemove() {
var sigs = document.getElementsByTagName('span');
for (var i = 0; i < sigs.length; i++) {
sigs[i].style.display = 'none';}}

I know it's incomplete but I only want to remove that bottom span tag and everything inside of it and not every span tag on the page.

View 8 Replies


ADVERTISEMENT

JQuery :: Creating A Favorite Links Menu, Removing Cloned Content?

Nov 18, 2010

I have several drop down lists of links with one of the drop downs being a "My Favorites". My intent is that when the user clicks on a star image next to the links, it is cloned and appended to the favorites menu, where it can then be drag and drop sorted. To remove the link from the favorites menu, the user can either click on the "x" button to the right of the link on the favorites menu, or unselect the star on the main menus.

I have successfully cloned the link and appended it to the favorites menu by selecting the star and enabled the drag and drop sorting, but I am having trouble removing the link form the favorites menu when unselecting the star and when clicking on the "x". Here is what I have so far:

var me = '';
$('div.star').toggle(function(me){
var me = $(this).next('a').text();
$(this).addClass('favorite').next('a').clone(true).appendTo('ul#myFavs1').wrap('<li></li>').before("<div class='dragHandle'><img class='png' src='_images/dragHandle4.png' width='11' height='11' /></div>").after("<div class='remove' title='Remove from Favorites'></div>").attr('id', me); return me;}, function(me){[CODE]...

So, I clone the link, wrap it, add a drag handle and the 'x' button, give it an id of the text of the link which all works fine. I have a different part of the script that uses the drag handle to drag and drop the links...that works fine. The issues I am having are that unselecting the star does not remove the link from the favorites drop down and clicking on the 'x' does not even fire the alert. The z-index on the 'x' is higher than all the other elements in the li.

View 2 Replies View Related

JQuery :: Removing Table,tr,td Wihout No Removing Contents?

Jun 5, 2010

i have situation that i need to remove table that is automaticly generated, but i also need to not remove contents of table.

<UL>
<table class="mytable" width="100">
<body>

[code]....

View 2 Replies View Related

Removing Script Tag

Jul 23, 2005

I have an HTML file that has a call to a Javascript function in it as
follows:

<!-- bunch of stuff -->
<script type="text/javascript">doXMLFromString()</script>
<!-- bunch of stuff -->

Now I make a copy of this HTML file by creating a new window and writing

var body = document.body.innerHTML;
printWin.document.write (body);

But this copies the script tag above as well, and then tries to call
that JS function (doXMLFromString). I don't want it to do that.

In other words I dont want that javascript statement to be executed. I
tried removing it from the document (using removechild) however it would
still get called.

How can I stop this?

View 2 Replies View Related

Removing Toolbar - How To?

Jul 23, 2005

Just wondering there is any other way to remove the toolbar from the browser
than using

" ...toolbar=no ..."

in the

window.open(...)

is there a way to do it after the browser opened? (say some Java script)

are there any parameters or style like stuff that can be embedded in the
HTML code and does it when the new page created?

or is the above method the ONLY way?

View 8 Replies View Related

Regexp - Removing From URL

Dec 26, 2005

I am weak when it comes to regexp but hoped someone might know in this case.
I am trying to take a url like this :

something.lasso?blah=blah&blah2=blah2&sort=hello&blah3=blah3

And remove the &sort=XXX without hurting the rest of the url. The parameter
to be replaced would be a parameter passed to a function. Here is what I
have so far:

function refresh(item) {
current = document.location.href;
if(current.match(item.name+'='))
//pseudo code here
//current.replace(item.name regexp , '');

return (current + "&" + item.name + "=" + item.value);

This function would be fired like this :

All <input type="radio" name="show" value="all"
onclick="document.location=refresh(this);">
Mine <input type="radio" name="show" value="mine"
onclick="document.location=refresh(this);">

View 13 Replies View Related

Removing NAME Attritbute

May 24, 2006

I've been given a large number of HTML pages. Each page has one or more
tags. When the pages were being built I asked that an ID attribute be
included with each element that will later be referenced. The first
ID'ed element on the page has the ID 'item0', the next 'item1' and so on.

Unfortunately they also included a NAME element which in many cases is
similar to the ID but out by one. That is the first element on the page
has the NAME 'item1', the next 'item2' and so on.

This stuffs up some things that depend on the ID (IE seems to make use
of the NAME instead of the ID when I ask getElementByID). Is there an
"easy" way to remove all the NAME attributes, or at least make them
invisible to IE, on page load?

View 2 Replies View Related

Removing Keywords In URL?

Apr 4, 2009

I'm having an issue in Internet Explorer to where the javascript i'm using isn't working now. In firefox it works great!

Code:

<script src="::URL::/jscript/php.js" type="text/javascript"></script>
<script language="Javascript">
function gup( name ) {
name = name.replace(/[[]/,"\[").replace(/[]]/,"\]");

[Code]....

I am using php.js from phpjs.org

You can see a live sample by visiting [URL]

View 1 Replies View Related

Removing CR From String

Mar 21, 2004

I am retrieving a memo field from a db and using SS VB writing it to a JS function like so:

document.form.textarea.value = "<%=rs("Story")%>";

The problem I have is if the value of the recordset contains a CR, the function errs. How can I replace the CR with a /n or something similar that fixes this problem?

View 1 Replies View Related

Removing Whitespaces

Mar 28, 2006

I have finally figured out how to make a call to an XML file using AJAX and then bringing it into the browser to manipulate with JavaScript. The only problem I'm having now is that I can't figure out how to remove the whitespaces between nodes so they won't show up as a childNode.

View 1 Replies View Related

Removing The Commas

Jul 13, 2007

How do I remove the resulting comma from the output in this sort snippet?

<script type="text/javascript">
var arr = new Array()
arr[1] = "C"
arr[2] = "B"
arr[3] = "A"
document.write(arr.sort())
</script>

Gives me: A, B, C
Needed: A B C

View 1 Replies View Related

Removing An Element With Dom?

Jun 19, 2010

I'm working on a Wordpress site and am using a photo gallery plugin. However, this plugin, for some reason, generates an empty table row and it's messing with my layout because I'm inserting a background image for each of the "TDs". I don't want to mess w/ the core files since the changes will be gone after the next upgrade. check out these two image links to see exactly what I mean.

[URL]

I know there are ways to dynamically remove elements using DOM. Would I be able to use that method here?

-edit- This gallery is paginated and I just noticed that on the last page, the last row actually contains two pictures and a " ". So, a better question would be: Is there a way to target just the td elements that have   in them so I can add a display:none via css?

View 14 Replies View Related

Removing GMT From Date?

Nov 24, 2011

at the moment my code: new Date();

this displays:

Thur Nov 24 201115:28:53 GMT+0000 (GMT)

I only want it to say:

Thur Nov 24 201115:28:53

View 6 Replies View Related

JQuery :: Featured Content Slider Using UI Not Functioning Within DHTML Tab Menu Content

Dec 20, 2010

1) Script Title: Ajax Tabs Content Script (v 2.2) and Featured Content Slider Using jQuery UI

2) Script URL (on DD): [URL]

3) Script URL of Featured Content Slider Using jQuery UI [URL]

4) Script URL of my implementation of both script. [URL]

5) Problem: I've integrated the featured content slider in one of the default content section of the tab menu as you can see on the link on point 4. The slider is working perfectly when until i click on other tab menu and then back tab menu 1. The slider seize to work no more and worst the other featured content slides are appearing below the first one.

View 6 Replies View Related

JQuery :: SlideUp Div Replace - Loads The Content Specified Into A Single Div - Replacing The Content Depending On Which Function Is Called

Nov 22, 2010

I have previously developed two scripts, both of which work really well, however I want to amalgimate them together if possible? My first script loads the content specified into a single div, replacing the content depending on which function is called, it also displays a loading gif during a timeout of 2 seconds. Here is the page:

[Code]...

View 1 Replies View Related

Best Way Of Removing Child Nodes

Jul 23, 2005

There doesn't seem to be any mechanism to "clear" a node of all
it's children (not that its necessary very often, but I have come
across situations where I'd like to clear a node of all it's
children before appending other nodes). I've come up with two
possibilities: Code:

View 4 Replies View Related

Removing Ads From Yahoo Posts

Jul 23, 2005

Does anyone have or know of script that will stop yahoo adding their adverts to end of post to groups?

View 3 Replies View Related

Removing An Element Of An Array

Jul 23, 2005

I wrote a simple script to remove an element of an array but I don't think this is the best way to go about it. I have a list of about five elements seperated by ";"

I split the array using array.split(";") command and proceeded to update the elemment by assigning the null value to the arrayindex

array[index]=""

This of course assigns null to the element

But there are two problems

1. The array size is still five instead of 4 and my list is now seperated by "," with an exta "," to go.

View 5 Replies View Related

Removing Menubars And Toolbars From IE

Jul 23, 2005

I've seen several older posts saying there is no way to hide menu bars
in IE unless you call window.open().

Is this still the case?

I'm interfacing with a app that I don't have control over. The idea is
that users log into my app do whatever and I then populate form tags
with user id and password and submit the form to the other app. This
logs the user in but the called app is used for reporting and the
status bar, menu bar and tool bar take up a lot of vertical space.

View 1 Replies View Related

Removing Unwanted Toolbars

Apr 5, 2006

I just have one index.html page with NO links NO pics. Just a simple
html page.

Whenever I open that page I want to eliminate few things like:


I don't want scroll bar -> I have a solution <body scroll="no">
I don't want status bar -> ? need solution ?
I don't want toolbar bar -> ? need solution ?
I don't want menu bar -> ? need solution ?


I JUST want the title bar, address bar and the IE window.

View 5 Replies View Related

Removing An HTML Element

May 30, 2006

I'm trying to remove an html element in the example below. I don't see
the "bye" message at the end and there are no errors reported in
Firefox or exceptions caught if I wrap the remove child line in a
try-catch. Any ideas what is wrong?

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>garbage</title>
</head>
<body>

<div id="my_div">hi<div>

<script type='text/javascript'>
var my_div = document.getElementById("my_div");
my_div.parentNode.removeChild(my_div);
document.write("bye");
</script>

</body>
</html>

View 2 Replies View Related

Problem Removing ReadOnly In IE

Dec 1, 2006

I am having trouble with the following code:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Test</title>
</head>
<body>
<input value='test' type='text' readonly='readonly'
onfocus='this.readOnly = false;'
onblur='this.readOnly = true;'></input>
</body>
</html>

In FF, this works as I would expect. When clicking on the input, the readOnly
property is set to false and the focus is given to the element, with the
cursor placed after the last character.

In IE, the readOnly property is set to false, but the element isn't actually
given focus. Instead, I have to click on the input a second time in order to
actually input text with the keyboard.

Is there a way to make this work the same in IE as it does in FF? I have
tried things like calling this.focus() and this.click() after setting
readOnly to false, but they have no effect.

View 2 Replies View Related

Removing Unwanted Characters

Jul 20, 2005

In a web based form I am able to make sure that there is text in an input field but I want to restrict the user from using such characters as ~ # & '

How can I modify this JavaScript below to enable this ?

if (document.form1.ProjectTitle.value == ""){
alert("Please complete the Project Title: field")
document.form1.ProjectTitle.focus()
validFlag = false
return validFlag
}

When entering the project title into another system it issues an error when those characters are input - hence the need to delete them from the request.

View 1 Replies View Related

JQuery :: Adding And Removing Row?

Jun 25, 2009

I want to be able to add row at the end of the table with a 'remove' link which will remove specific row. The code I've managed to write so far:

$(document).ready(function() {
$("#add_item").click(function () {
var html = "<tr id='item_" + item_id + "' class='item'><td><a

[code]....

The problem is it wont instert the row at the proper place (after the last .item (class) and the remove link wont work for the last row in the table/list.

View 1 Replies View Related

JQuery :: Removing A Specific Tag?

Jan 14, 2011

I'm gonna remove a <td> tag that only contains some empty <span> tags with their specific id values like the code below:

<td
class
="leftColumn"
>

[Code].....

View 4 Replies View Related

JQuery :: Removing An Animation(?)

Jul 18, 2011

The script I used is from:[url] I can't figure out what the instruction on his page mean.

On the page that I created:[url]

I have finally figured out how to move the description to the left side instead of on top of the image. Now I just need to turn the animation off that moves the description up and out of its box and I can't figure out how or know where to look. Here is the jquery script that I made minor changes to: [url]

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved