$(document).ready(function(){
var speed = 700;
var pause = 3500;
function removeFirst(){
$('ul#newsfeed li:first').hide('slide', {direction: "up"}, speed, function() {addLast(this);});
}
function addLast(first){
$(first).insertAfter('ul#newsfeed li:last').show();
$('ul#newsfeed li:first').show("slide", {direction...
Hi, I used jQuery sparkline (http://omnipotent.net/jquery.sparkline/) in a page. This gives me problem in IE if the container DIV is not big enough to show it, tried with Firefox/Chrome, it is working fine. See the sample code,
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<hea...
Recent windows updates seem to have broken the MS Web Browser Active X control. I found Stephen Labens HTML Editor (http://www.lebans.com/htmleditor.htm) as a demonstration and downloaded it. As in my own application the message is "no object in this control".
I'm using Access 2003 on a Win XP machine. My version of shDocVw.dll (Inte...
Does anybody experienced this kind of fault.
So i have some kind of imageuploader.
It fetches an image, grabs the bitmap data from it. convert that with a jpgencoder to a bytearray, send that bytearray to a server with amfphp and in php save that as a jpg on the server.
So this works great in FF, Chrome, Safari, Opera ( Mac & Windows ...
Hi,
I am developing a rails app.
(I don't think this is a rails-specific problem)
There's a reservation process which is consisted of 3 steps.
When a user is on step 2 page, if the user clicks 'Previous' button, the form data in step 1 should be the same as before.
I attached "history.go(-1);" to the 'Previous' button.
It works on my ...
Possible Duplicate:
Running IE6, IE7, and IE8 on the same machine
IS there anyway to have IE 6.0, IE 7.0 and IE 8.0 all installed on the same machine? Using Windows XP?
I am trying to test my web application and it must be able to run in IE 6-8
...
Hello,
I am trying to use JSON to populate a div, so I basically run a loop to go through the entire data I get, about 200 records and fill it into a div.
It work great in most browsers, but IE it crawls to the core. Is there some solution to the problem?
Thank you for your time.
...
Our (asp.net) system is part of a larger system. It is launched via this larger system from javascript that does a window.open call to open a new window.
(aside, authentication data etc is passed into our system via an encrypted query string parameter)
When testing with IE7 (unfortunately the organization has standardized on this) the...
When I load the frontpage of the website I work for in IE it takes about 7 or 8 seconds to load fully (meaning, the "Waiting for" and "(x items remaining)" disappear and change to "Done".
The exact same page takes about half the time in Firefox and Google Chrome, and I just can't figure out what's causing the difference.
Is this just g...
I have created application which is opening .txt files in an window. I want to make it as Active X which should work on IE.
What should i do to convert to DLL.
Please suggests.
Sow
...
Hope i can post this issue on this forum..
i have a page in php
http://www.teamdelta.byethost12.com/index.php
This displays fine in firefox and the new IE. but in any older version of IE its comes up all wroung!
please tell me what im doing wroung so that it disssplays incorrectly in old IE..
i wish to have a page that works in all b...
I created a site using ning, when i
open the site in IE, I get an error
"dojo is undefined". The page display
is totally haywire. But the site works
perfectly in other browsers (i have
tried in safari only).
I am looking for some workaround / fix
on the server side, since i do not
expect users to change their IE
...
When I upload a jar file to my web server, people using Firefox or Opera don't have any problems downloading it.
But when the link is downloaded with Internet Explorer, IE unzips the contents of the jar, instead of simply downloading it.
Is there a way to prevent IE from doing this?
...
I'm working on a desktop application in Delphi 2007 and on a website where content data for this application is maintained. To view this website, the user is basically restricted to Internet Explorer 7 or higher. (Not going to support the rest.)
What I am looking for is a way to add a link to the website which would tell my already-runn...
i need help .
its work ok in firefox or Opera.
the problem is in ie.
i try to put it in style file , or inline style but not effect.
...
I have a home-grown HTTPS server that serves up simple files (it's embedded within my app). It works great -- been using it forever.
Recently added SSL support -- Chrome, FireFox and IE all like it and load pages just fine.
The problem I find is when I try to load a PDF file over the HTTPS connection. For some reason, the PDF never d...
Using the Microsoft .NET WebBrowser control sometimes leads to a White Screen. Yahoo.com is a great example of a website that does that depending on your IE settings. I have found that by changing the Internet Options in Internet Explorer, those same settings will affect the WebBrowser object as well and make it possible for the WebBro...
Is there any way to differentiate IE7 versus IE6 using PHP's get_browser() function?
...
I'm building a text input field specialized for entering and editing times. One of the parts of the functionality calls for various ways to focus on the different components of the time (hours, minutes, seconds), which I indicate through a text selection. Direct selection is possible with the mouse and this is working great. The other fe...
I've been trying to handle the onkeydown event across multiple frames (no, I unfortunately cannot be rid of the frames) via javascript (see my previous question here). I'm getting a handle on the document in the other frame, and setting it's onkeydown handler equal to my function. No error is thrown, but when I later check the document...