I am giving downloads to user using the PHP code below but when user downloading they are not able to see the progressbar in IE8 when clicked on save button. Please solve this.
Thanks in advance.
header('Content-Description: Songsbin.com - Downlaod');
header('Content-type: audio/mpeg');
header('Content-Disposition: attachment; filename=...
I have a curious problem with IE, IIS 6.0 dynamic PNG files and I am baffled as to how to fix..
Snippet from Helper (this returns the URL to the view for requesting the images from my Controller.
string url = LinkBuilder.BuildUrlFromExpression(helper.ViewContext.RequestContext, helper.RouteCollection, c => c.FixHeight(ir.Filename, ir.A...
I'm have an action /json that returns json from the server.
Unfortunately in IE, the browser likes to cache this json.
How can I make it so that this action doesn't cache?
...
I have code like that:
var xPola = 10, //how many cols
yPola = 10, //how many cols
bokPola = 30, //size of cell
body = document.getElementsByTagName('body')[0];
var tablica = document.createElement('table');
body.appendChild(tablica);
for( var y = 0; y < yPola; y++ ) {
var rzad = document.createElement('tr');
tabl...
I'm wondering why opacity animations only work with Firefox, and not with chrome or internet explorer.
For example,
jQuery("#a").fadeTo(1000,1);
fades the element in with firefox, but just makes it appear with Chrome or IE. All I want is for the element to fade in.
How can I get this to work with IE and chrome?
Edit: Same thing if ...
I have a website that uses SSL to allow users to enter sensitive data, but there is a large amount of static content that I do not want to be served up with each page request - several Javascript libraries combine to make up almost 1MB for example, which is a serious overhead with each request!
Everything I've read suggests that there i...
<div style="float:left; width:50%;">
div 1
<div style="position:absolute; width:105%">nested element</div>
</div>
<div style="float:left; width:50%;">
div 2
</div
If an element exceeds the width of its floated parent element, the next element is pushed down unless I apply overflow:hidden on both floated elements, which defe...
Hi,
I'm using prototype and setStyle in IE6 is just messing everything up. It's throwing a big error.
I've Googled it but cant find a solution.
I've identified the line in prototype with the IE script debugger, it's the final else block:
setStyle: function(element, styles) {
element = $(element);
var elementStyle = element.st...
I am currently working on a .Net application which makes HTTP requests to some web applications hosted on a IIS server. The application is deployed through ClickOnce and is working fine on simple networks architectures.
One of our customers has a very complex network involving a custom authentication server on which the user has first to...
Someone tried to recreate smarty in js:
// actually from a template file, not hardcoded in the javascript
html = '<span class="{test}">yay</span>';
html = change(html, 'test', 'foo bar');
function change(html, key, value){
html = html.replace('{'+key+'}',value);
html = html.replace('%7B'+key+'%7D',value);
return html;
}
...
I need an up-to-date jQuery color animation plugin that works in IE 8. I tried using the one at http://plugins.jquery.com/project/color but it causes errors like "Invalid property value." in the following line of code from color.js:
fx.elem.style[attr] = "rgb(" + [
Math.max(Math.min( parseInt((fx.pos * (fx.end[0] - fx.start[0])) + f...
I have the following piece of code:
// setup the AJAX request
var pageRequest = false;
if(window.XMLHttpRequest) pageRequest = new XMLHttpRequest();
else if(window.ActiveXObject) pageRequest = new ActiveXObject("Microsoft.XMLHTTP");
// callback
pageRequest.onreadystatechange = function() {
alert('pageRequest.readyState: ' + pa...
I'm having a problem with a dropdown menu under IE (6 and 7).
http://www.amaconsulting.pl/promocje.html
As you can see, the dropdown hides behind the main content area in IE.
It's a known bug and general advice is to set a z-index for header and content areas, so IE knows their "place", explained in the article here: http://bit.ly/c...
I am embedding Flash object (a tiny component) based on selection in ui.
so lets say based on combination of user selection flash component is loaded.
i have modified AC_FL_RunContent to return html string of flash.
function loadDynamic(choice)
{
// manipulate flashVars
var flashVars = "";
flashVars=flashVars + "Choice="+c...
Hi.
I have the following css code.
button.png is image where 3 button states are pasted vetrically, so i just move image in css.
a.button
{
background-image: url(button.png);
background-position: 0px 0px;
width: 100px;
height: 30px;
display: block;
background-repeat...
The context of the problem is related to an application which is single-page Ajax application. The layout of the page consists of three different panels (iframes) as follows:
_________________________________________________
| |
| Frame A | Frame C
|_______...
i'm using fckeditor in php.problem in IE6.when i bold a word, working fine. but when i remove bold, it doesnt work. not only bold, and also italics, underline also.
...
I'm clearing IE's cache programmatically using DeleteUrlCacheEntry() and I would like to verify that I did it correctly.
Should I expect the Temporary Internet Files folder to be empty after clearing the cache? (it isn't)
If not then what is the simplest way to determine whether the browser is using its cache when accessing a site?
...
Okay, this is REALLY starting to bug me...
This page works fine in both Chrome and Firefox. www.bloggan.tk
But if it's opened in internet-explorer it always expands beyond the page and introduces the scrollbar no matter what the resolution of the browser is.
I have NO idea what change in the html it was that cause this...
Here's the blog...
I'm trying to have a kind of dirty underline effect using a string of hyphens, but I want it slightly closer to the multi-line title than the line-height.
Negative margin works a treat in FF but no joy in IE?
<p>a multiline title here<p><p style="margin: -7px 0px 10px 0px;">--------------------------------------------------------------...