I recently took over a GWT project and began making necessary changes. Everything was fine until one day someone viewed the project in IE-7. There is an error msg that persists in two of the GWT panels or screens. Also the final results after using the tool do now show properly, however they are emailed correctly.
Because I took over...
I've made an attempt here. However, it has two problems:
IE
Last element of a list being a sublist
Is there a better way of doing this?
...
Is it possible to emulate event capturing in Internet Explorer?
An example:
<a>one</a>
<a>two</a>
<a>three3</a>
<script>
var links = document.getElementsByTagName("A");
for (var i=0; i < links.length; i++) {
links[i].onclick = function(){
alert("clicked");
};
}
</script>
I want to prevent all these click events from firing. ...
I got 2 divs, one inside another.
<div id="ads_content" class="ads_contents">
<div id="ads_text" class="ads_text">
... text contents ...
</div>
</div>
ads_content div has max-height of 230px, and it has overflow: hidden. So there will be shown a definite amount lines of text from ads_text div. I need to compare their ...
I have an ajax call to create a form for a user to fill out but if the form is too long then IE will clip off the first chunk of stuff I send through innerHTML.
$.ajax({
type: "GET",
cache: false,
url: "new_account",
data: "type=" + x + "&serviceId=" + y + "&back=" + z,
beforeSend: function() {
$(...
hello all,
My X-site scripting using JSONP encounters error on IE8 but works fine on both firefox and crome...
here the returned JSON object passes an array with a comma at the end and no last element ...i.e something like {a,b,c, } ..as you can see the last element is succeeded by a comma and that is what is causing problem on IE.
the ...
Hi all,
I'm in the process of creating a gallery which displays several formats of images (wide, square and tall) in a fixed space. The ideal solution would be to have all the images to be the same dimensions, but this cannot be achieved.
I'm using a combination of max-width and max-height to ensure that images scale properly to the l...
Each ProcessingPayments() used memory increase. CollectGarbage() not helps. Use Drip to view memory usage, but don't view any DOM leaks.
I use only IE8 and tested on older versions. Other browsers not interested.
How can I decrease growing memory usage while execute this script?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitiona...
First, here is a picture of what I see
http://img713.imageshack.us/img713/4797/iedrop.png
I need an solution to clear addressbar dropdawn, but not using ClearMyTracksByProcess or IE dialogs. I need to delete only a specific URL and all his traces.
I deleted manually all traces of that URL in:
Users\\AppData\Local\Microsoft\Windows\Te...
Hi,
I can't find a good answer for this anywhere.
I have a login page, and after a good login it redirects to main page.
In FF, and chrome - works perfect. On IE it doesn't work. I keep losing the session when I get to the main page.
I have checked the following:
- session_start at top
- no blanks or anything befoer header redirect
- o...
I Program my local schools program launcher which allows students to get on the internet with an randomly generated key provided by a teacher. This is done by changing the proxy in Internet explorer to the one needed for the internet and the wb filter.
With the schools website and learning resources gradually moving to offsite hosting t...
This page is not showing correctly in internet explorer while it's fine in other browsers. Any ideas would be appreciated. I am not sure if I should paste the css here as it can be viewed with firefox tools. However if anyone requests it I will post it.
This is the page:
http://www.enjoyislam.net/adult.html
...
Hi,
I am writing some web app, from web app I want to know if skype is installed or not on a machine from which web page is called. Is this possible? if yes how?
It should work at least on Firefox, IE and chrome on windows. If it works on Linux and Mac then it will be great.
Thanks in advance.
...
Hi,
I want to set border for a div,
Using: -webkit-border-radius working fine on Chrome but it is not working for Internet explorer, triple versions: ie 6, 7 and 8 :D
Is there any other attribute like -webkit-border-radius specifying for IE?
Thanks in advance.
...
Is there a way to launch the IE proxy settings dialog from the Windows command line to save time going through menus in any application?
...
I must admit, this is my first post on this site, so I apologise in advice if I do something wrong (formatting etc).
Anyway, I'm creating a kind of mmo using javascript (and jQuery), and so far everything is running fine in Chrome, Safari, Firefox, etc. However, I've found that somewhere along the line, Internet Explorer crashes.
By ...
Hi guys. This is my code, which sometimes works and sometimes doesn't.
var resolve_ajax_login=function(){
$.ajaxSetup({cache:false });
var loginvar=$("#inputlogin").attr("value");
var senhavar=$("#inputsenha").attr("value");
$.post("../model/php/login_ajax.php",
{login:loginvar, senha:senhavar},
function(respons...
I am having a CSS problem in IE
This page looks fine in Firefox, chrome, opera....but on IE the "date bar" overlaps on the first <li> bar
Here : http://www.animefushigi.com/latest-episodes
CSS is as followed :
#content h2.other-posts {
height: 31px;
font-size:12px;
line-height: 31px;
background: #2c2b2b;
padding: ...
I developed little site that use:
-webkit-box-shadow: 0px 0px 20px #000;
-moz-box-shadow: 0px 0px 20px #000;
box-shadow: 0px 0px 20px #000;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
for making shadow and radius on boxes. And $(".mainpage").show() Jquery function to show new content qhen user clic...
Hello all,
I have an ASP.NET application designed for a Windows CE device that needs to take in information from a scanned barcode. The device sends the scanned data as string input with a crlf to whatever field has focus. I set up my page with a textbox that takes the input and posts back to look up the item.
Now, I'd like that box to...