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 ...
|
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 ... |
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 ... |
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 ... |
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 ... |
function updateSelector()
{
//select all drop down list of field selector
var fieldSelector = $("select:not(#project):not(#allNo):not(#availableNo)");
var selected;
//copy full option ...
|
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 ... |
|
I have code like this:
_removeSelection : function(e, refocus) {
var thisObj = e.data,
lineItem = $(this).closest('li'),
...
|
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 ... |
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 ... |
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 ... |
|
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. |
|
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')){ ... |
|
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 ... |
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 ... |
Here is some example code, and a test case for which it fails in ie.(Latest version of jquery, 1.26) |