I'm creating some checkbox elements on the fly with jQuery and appending them to a node like so
var topics = ['All','Cat1','Cat2'];
var topicContainer = $('ul#someElementId');
$.each( topics, function( iteration, item )
{
topicContainer.append(
$(document.createElement("li"))
.append(
$(document.createElement("input...
I'm looking to generate an output similar to this:
1. One 2. Two 3. Three 4. Four
from the following HTML Code
<ol>
<li>One</li>
<li>Two</li>
<li>Three</li>
<li>Four</li>
</ol>
It seems that Internet Explorer does not want to display the number's (list-item's) when you float the li's in order to make ...
We're debugging a GWT app. Runs ok in Firefox, in IE6.0 starts working ok but after some time, it gets on its knees and starts to crawl.
After doing some tests we're suspecting some memory problems ( too much memory used, memory leaks, etc )
Besides using taskmanager and processxp to watch the memory usage grow :)....¿do you recommend a...
Hi friends
i am doing a project , in that i fetch some content from website , while i running the page the IE displays the alert msg as "Framework not found!" . Please anyone help me to find out the error.. Thanks in advance...
...
I'm having problems getting UI code to perform at all well in IE.
I have a table - a matrix of values. Each cell can be empty or hold a list of items.
I want users to be able to drag items between cells.
So my HTML looks something like this:
<table>
<tr><td></td><th scope="col">col 1</th><th scope="col">col 2</th></tr>
<tr><t...
I have a html form which goes of to do all sorts of strange back end things. This works fine in firefox. and in most cases it works fine in IE
However the (pound sterling) £ sign causes problems, and seems to get munged in the submit.
The forms is something like this
<form action="*MyFormAction*" accept-charset="UTF-8" method="post"...
In Firefox, you can simply call:
myInputTextField.selectionStart or myInputTextField.selectionEnd
to get the first and last indices of the selected text in the input box.
In IE, I know that you can call document.selection.createRange() to fiddle with the selection a little bit. For the life of me, however, I have not found any value ...
hi, on this site
http://redlineautoleasing.com/beta/
what could be causing the bottom scrollbar? i cant figure it out.
i tried this
http://blog.josh420.com/archives/2007/11/fixing-the-ie-overflow-vertical-scrollbar-bug.aspx
but the page kind of got messed up the bottom content got chopped off.
...
I like to be able to fully test compatibility of my web pages on Mac OS X. I have installed Parallels desktop. It works fine, but it uses a lot a of resources...
So I would like to be able to test everything inside OS X. In fact I am looking for Explorer 6 for the Mac.
Any suggestions around?
...
I have made a table with a thead (header); on a Mac, and in Firefox everything is fine, but on Internet Explorer 6 the head is just gone...
Any idea why?
Here is the link to test it: http://www.acecrodeo.com/new/05-rodeos.php... The table is constructed in tablerize.js:
jQuery.fn.tablerize = function() {
return this.each(function(...
I have a strange issue with a Telerik RadWindow that only occurs in IE8. It works fine when I force the browser to use Document Mode: IE7 Standards. I am trying to specify IE7 compatibility mode on a Per-Page Basis for just one page in my site. using
<head>
<!-- Mimic Internet Explorer 7 -->
<title>My Web Page</title>
<me...
I've been working on this for a few days, and have made some (though very little) progress in getting my scripts to work in IE.
FF & Chrome are flawless. Both IE7&8 completely shut-down when running my script.
The only error I get is when I first load-up the page, and i get a warning that their is an error in the main jquery.min.js pa...
Hey there
I'm having trouble with some JS in IE7. I'm testing to see if a certain object has a className (its possibly an HTMLElement object from the DOM) assigned.
Now, testing the page in Firefox tells me that Yes, the variable is undefined (all my tests below do the Alert().
In IE, none of the tests pass, the variable gets assigne...
I have a web application which from time to time get IE in a hung state, where IE uses 100% of the CPU. The only way out is to terminate the IE process.
When I look at the stack trace of the thread which is hung in iexplore.exe, I see that the stack traverses mshtmled.dll. I am used to see mshtml.dll in those stack traces, but not mshtm...
Hi
I'm creating the installer for a Silverlight app of ours. The app will run on the local machine, in internet explorer in kiosk mode and will be started from a desktop shortcut.
I'm having trouble creating the shortcut with my Setup Project in VS 2008. What I need to end up with is a shortcut on the desktop with this
"C:\Program Fi...
Is it possible to prevent a user from typing in a file input text box in IE? The reason I ask is that if a user enters text that does not look like a file system path (eg. doesn't start with something like c:...) then when the user clicks the submit button nothing will happen.
I would either like to not allow the user to type in the bo...
I cooked up a pattern to create and extend html elements using their prototype. This works like a charm in non-ie browsers. Example code can be found @jsbin (see page source)
The advantage of this pattern should be speed (the methods are in the elements prototype chain, so they are referenced once). You guessed right: IE no go. In IE < ...
Hi
I have tested this on Firefox, Opera and Seamonkey. It works fine. When it comes to Internet Explorer 7. It works but upto a certain point. I am making an AJAX call to a PHP script every few seconds. In IE7 it makes the first AJAX call and it retrieves the data but it doesn't do it again ever. Even though i have a setTimeout function...
Hi,
i am using jquery autocomplete in 2 places in the same page:
One in the header and one in the body of the page.
Both work fine in Firefox and Chrome.
But in IE the autocomplete in the header works fine and not the one in the body.
Could someone please let me know what the problem could be and a possible solution?
Thanks in Adva...
I've got a particularly tricky problem using AJAX, which works fine in IE7 and Firefox, but not in IE6.
I have a very simple home-grown AJAX framework, which requires that I extend the XMLHttpRequest object (or in the case of IE, the XMLHttpRequest ActiveXObject) by adding a couple of properties. Relevant section of code is as follows:
...