remove

Writing a remove name loop for a list

Hi everyone, I'm looking to try to make an efficient delete method to work on a list. This situation is as follows: Say for e.g. I have a (potentially) massive list of names: Alex Smith Anna Hobb Bertie Blackman Bill Clinton David Smith David Warner George Jung George Washington William Wobbits Lets say that this is a List<Person> w...

jQuery: remove certain elements from HTML document

I'd like to strip certain elements from my HTML document. It seems that removing some tags simply doesn't work. For example - strip all stylesheets: $("style",this._doc.body).remove(); I'd also like to remove comments or something like weird winword tags like: <!--[if gte mso 9]> How to do it? ...

Cannot remove git repository completely

I have been using git on windows-msysgit. Whenever I try to remove a repository completely either using explorer or using $ git rm -rf ptp/ fatal: Not a git repository (or any of the parent directories): .git it errors out "The data present in the reparse point buffer is invalid" or the fatal error above. What's wrong with me/git? ...

Flex - Remove horizontallist rollover color

Hi Community! I'd like to remove the rollovercolor of a horizontallist (my component has a background image). I've tried using a css style sheet by setting the "roll-over-color" property to "transparent"... But I get a black background >_< Could anyone help me with this? Thanks a lot =) Regards, BS_C3 ...

jquery append and remove element problem

i have this code <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"&gt; <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title>Test jQuery</title> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript"> $(function...

(PHP) How remove extension from string (only real extension!)

Welcome, I'm looking for small function what allow me to remove extension from filename. I found many examples on the Google but there are bad because just remove part of string with "." . They use dot for limitter and just cut string. Look at this scripts $from = preg_replace('/\.[^.]+$/','',$from); OR $from=substr($from, 0, (st...

How come jQuery can't remove this element?

I have a table like this: <table id='inventory_table'> <tr id='no_items_avail'> <td> There are no items in the database. </td> </tr> </table> And I want to get rid of it with jQuery like this: $('#inventory_table tbody tr#no_items_avail').remove(); However it doesn't seem to be working at all. What am I doing wro...

jquery remove selected element and append to another

I'm trying to re-append a "removed option" to the appropriate select option menu. I have three select boxes: "Categories", "Variables", and "Target". "Categories" is a chained select, so when the user selects an option from it, the "Variables" select box is populated with options specific to the selected categories option. When the ...

jquery disable/remove option on select?

Hi all, I have two select lists, I would like jquery to either remove or disable a select option, depending on what is selected from the first select list: <select name="booking" id="booking"> <option value="3">Group Bookings</option> <option value="2" selected="selected">Port Phillip Bay Snapper Charters</option> <option value="6...

Using jQuery:remove() to delete/remove form elements off a page

I'm trying to remove a form element generated through Ajax calls, but when I submit the form and var_dump the POST request, I can still see the form field key=>value. I need to be able to completely remove the field through jQuery in order to validate correctly. ...

PHP: How to remove specific element from an array?

How do I remove an element from an array when I know the elements name? for example: I have an array: $array = (apple, orange, strawberry, blueberry, kiwi); the user enters strawberry strawberry is removed. To fully explain: I have a database that stores a list of items separated by a comma. The code pulls in the list based on a u...

Adding folders to a git repository while ignoring some subfolders

Im trying to add a directory "foo" to my repo, but there are some sub dirs lets call them "bar1", "bar2", "bar3" and "bar4" Now I want to add foo to my repo, while ignoring foo/bar2 and foo/bar3 is this possible? do i need to add them first and then remove the folders I dont want? ...

Remove a child from an array in PHP?

Lets say I have this array: $queue = array("orange", "banana", 'apple', 'watermelon'); If I want to remove any of them,for example I want to remove banana, how to do it? ...

R: Removing object from parent environment using rm()

Hi, I am trying to remove an object from the parent environment. rm_obj <- function(obj){ a <-deparse(substitute(obj)) print (a) print(ls(envir=sys.frame(-1))) rm(a,envir=sys.frame(-1)) } > x<-c(1,2,3) > rm_obj(x) [1] "x" [1] "rm_obj" "x" Warning message: In rm(a, envir = sys.frame(-1)) : object 'a' not found This will he...

What is the proper way to remove elements from a scala mutable map using a predicate

How to do that without creating any new collections? Is there something better than this? val m = scala.collection.mutable.Map[String, Long]("1" -> 1, "2" -> 2, "3" -> 3, "4" -> 4) m.foreach(t => if (t._2 % 2 == 0) m.remove(t._1)) println(m) P.S. in Scala 2.8 ...

How to Remove the Last Week Of a Calendar

I am not sure why other people have not asked this before. But have you notice that the asp:Calendar shows an extra week at the end? For example if the VisibleMonth is set to 2010-03-01 and FirstDayOfWeek to Sunday: It will show 6 weeks. Feb 28 to March 6 March 7 to March 13 March 14 to March 20 March 21 to March 27 March 28 to Apri...

ant task to remove files from a jar

Hi, How to write an ant task that removes files from a previously compiled JAR? Let's say the files in my JAR are: aaa/bbb/ccc/Class1 aaa/bbb/ccc/Class2 aaa/bbb/def/Class3 aaa/bbb/def/Class4 ... and I want a version of this JAR file without the aaa.bbb.def package, and I need to strip it out using ant, such that I end up with a JAR ...

How to delete text string using JQuery?

Hi Guys, I have the following code: $('.breadcrumb:contains(",")').hide(); It does as expected and hides the entire breadcrumb, but how would I go about just remove the comma? ========== EDIT: <div class="breadcrumb"> <a href="#">Link 1</a>, <a href="#">Link 2</a> </div> ========== Thanks for any help ...

Cocoa - Enumerate mutable array, removing objects

Hey there, I have a mutable array that contains mutable dictionaries with strings for the keys latitude, longitude and id. Some of the latitude and longitude values are the same and I want to remove the duplicates from the array so I only have one object per location. I can enumerate my array and using a second enumeration review each...

Jquery removeClass Not Working

Hey, My site is here: http://treethink.com What I have going is a news ticker on the right that is inside a jquery function. The function starts right away and extracts the news ticker and then retracts it as it should. When a navigation it adds a class to the div, which the function then checks for to see if it should stop extracting/...