remove « internet explorer « jQuery Q&A

Home
jQuery Q&A
1.addClass
2.alert
3.array
4.attribute
5.browser
6.callback
7.clone
8.Cookie
9.Date
10.Development
11.document
12.dom
13.element
14.filter
15.Firefox
16.flash
17.format
18.html
19.input
20.internet explorer
21.json
22.mootools
23.page
24.performance
25.regex
26.safari
27.selector
28.setTimeout
29.String
30.table
31.Text
32.trigger
33.URL
34.video
35.xml
jQuery Q&A » internet explorer » remove 

1. jquery Remove siblings elements, doesn't work in IE7    stackoverflow.com

I'm trying to remove all the sibling elements after a particular div, lets say the div tag with id = id8.

<form>    
<div id="id5">something ...<div>
<div id="id8">something ...<div>
<div id="id3">something ...<div>
<div ...

2. jQuery - IE removing half the content    stackoverflow.com

I really need help with this one! this works perfectly in firefox and apart from google chrome not getting the textarea content perfect there too. What the below code does is simply ...

3. jQuery remove issue with IE6    stackoverflow.com

I know, I know, IE6 is the devil but I have no choice but to work with it on this project. When I try to remove a parent div it works ...

4. jQuery html method is removing linebreaks in MSIE?    stackoverflow.com

Have tested in Chrome and Firefox, they both preserve line breaks, but MSIE isn't. Here is proof: http://jsfiddle.net/rNHAm/ It's a bug of MSIE or jQuery, or it's ok for both? :) I can't ...

5. Does IE fail when removing tag attribs with jquery?    stackoverflow.com

I´m using an different box for title atrib in elements. I´ve developed a simple jQuery stuff to do it but... the "best friend ever", IE, don´t work correctly. It´s simple don´t ...

6. .remove() or selector behavior in IE    stackoverflow.com

function updateSelector()
{
    //select all drop down list of field selector
    var fieldSelector = $("select:not(#project):not(#allNo):not(#availableNo)");
    var selected;
    //copy full option ...

7. jQuery .remove() doesn't fire in IE8    stackoverflow.com

Who can explain this, please? In my function, I use .remove() to remove one row of a <select> box (I mean to remove an <option>) but why doesn't it work? In FF it ...

8. Why is jQuery remove throwing .attr exception in IE8    stackoverflow.com

I have code like this:

_removeSelection : function(e, refocus) {

  var thisObj      = e.data,
      lineItem     = $(this).closest('li'),
 ...

9. jQuery next() and/or remove() breaking in IE?    stackoverflow.com

I've got this silly problem (called Internet Explorer) that keeps breaking on something that no other browser has a problem with. Since this is pretty common ground, I thought I'd ask. If ...

10. IE7: .remove() does not work - element (byID) does not exist    stackoverflow.com

This code below DOES NOT work in IE7, but works perfectly in all other browsers tested. The element '#requestFormContainer' comes into existence after the .ajax request below. In fact, $('#requestFormContainer').length equals 1 ...

11. Problem using .remove and ajax + IE9    forum.jquery.com

I have a dropdown menu with some products in it. When I select the product at the first time, the ajax request works correctly and it shows me some additional dropdowns. Now, when I select another product it also works correctly until I decide to pick the product I chose previously from the list. It doesn't the dropdowns anymore. It looks ...

12. removing an element not worked in ie    forum.jquery.com

13. IE won't remove dropped draggables    forum.jquery.com

I found out that there is a slight issue with this fix. The sortable will still catch the element when its update callback fires. To get around that I changed it to temp = ui.draggable.addClass('ie_makes_us_do_this').empty(); and then test for that class in my sortable callback. Still hoping for a real fix to .remove() though.

15. jquery .remove() function doesn't work in IE8    forum.jquery.com

Hey everyone! I'm confused about my script that works in firefox/opera like a charm, but doesn't so in IE8. Here we go: $(document).ready(function(){ $(".folder").live('click',function(){ var id = $(this).attr("id"); if($('#' + id).hasClass('folderClosed')){ ...

16. .remove jquery not working with IE7 and I6    forum.jquery.com

17. [jQuery] remove() method IE 7 ERROR    forum.jquery.com

Hi,I have an ajax request which is returning an xml, but when I tray toremove an element from the xml response I'm receiving the followingerror message:This is happening only in IE7 (I didn't tray in IE6)Line: 1283EROOR: "Object doesn't support this property or method"This is my code:var pDialog = $(data_responce).find('PDialog');if(pDialog ){pDialog .remove();}This is what I find in 1283 when i debugged ...

18. [jQuery] how to detect node removal in IE?    forum.jquery.com

I'm working on a plugin that extends the change event to detect whennon-input elements are modified. For example, when a span tag has newcontent added/changed/removed.I've got some of the basic behaviors working well using DOM Mutationevents in FF, Safari, and Chrome. IE 6/7 is being its typical self.pbbbbt...Does anyone know of an event that fires in IE when a node is ...

19. [jQuery] Remove() xml nodes doesnt work in ie    forum.jquery.com

Here is some example code, and a test case for which it fails in ie.(Latest version of jquery, 1.26)