FAQ Topic - How do I prompt a "Save As" dialog for an accepted mime type?

F

FAQ server

-----------------------------------------------------------------------
FAQ Topic - How do I prompt a "Save As" dialog for an
accepted mime type?
-----------------------------------------------------------------------

It is not possible with client-side JavaScript.

Some browsers accept the Content-Disposition header, but this
must be added by the server. Taking the form:-
` Content-Disposition: attachment; filename=filename.ext `

http://aspfaq.com/show.asp?id=2161

http://support.microsoft.com/support/kb/articles/Q260/5/19.ASP


===
Postings such as this are automatically sent once a day. Their
goal is to answer repeated questions, and to offer the content to
the community for continuous evaluation/improvement. The complete
comp.lang.javascript FAQ is at http://jibbering.com/faq/index.html.
The FAQ workers are a group of volunteers.
 
E

Evertjan.

FAQ server wrote on 12 mei 2007 in comp.lang.javascript:

Which is logical, my dear Watson Faq, as the below header line ASP-
insertion is "executed" in the browser BEFORE any clientside code runs.

From a clientside only webside point of view,
a view held by many clientside javascript programmers out of necessity,
the question realy is:

Is there anything in a clickable anchor, that forces such user response?

There is!

<a href='x.html'
onclick='alert("please rightclick, choose `save as...`");return false;'
download me</a>
==================

Some browsers accept the Content-Disposition header, but this
must be added by the server. Taking the form:-
` Content-Disposition: attachment; filename=filename.ext `

<script language='jscript' runat='server'> //ASP-enabled server needed
Response.AddHeader('content-disposition','attachment;filename=x.html');

[shows only ASP-vbscript]
 
S

shimmyshack

FAQ server wrote on 12 mei 2007 in comp.lang.javascript:
It is not possible with client-side JavaScript.

Which is logical, my dear Watson Faq, as the below header line ASP-
insertion is "executed" in the browser BEFORE any clientside code runs.

From a clientside only webside point of view,
a view held by many clientside javascript programmers out of necessity,
the question realy is:

Is there anything in a clickable anchor, that forces such user response?

There is!

<a href='x.html'
onclick='alert("please rightclick, choose `save as...`");return false;'
download me</a>
==================

Some browsers accept the Content-Disposition header, but this
must be added by the server. Taking the form:-
` Content-Disposition: attachment; filename=filename.ext `

<script language='jscript' runat='server'> //ASP-enabled server needed
Response.AddHeader('content-disposition','attachment;filename=x.html');

[shows only ASP-vbscript]



<html>
<head></head>
<body>
<iframe frameborder="0" width="0" height="0" src="" id="file"
name="file"></iframe>
<a href="data:application/vnd.ms-excel;base64,MSwyLDMsNA=="
target="file">click here</a>
</body>
</html>
 
L

-Lost

shimmyshack said:
<html>
<head></head>
<body>
<iframe frameborder="0" width="0" height="0" src="" id="file"
name="file"></iframe>
<a href="data:application/vnd.ms-excel;base64,MSwyLDMsNA=="
target="file">click here</a>
</body>
</html>

I find it odd that only Opera gets it right.

Isn't this type of thing useless for all MIME types that the browser can
open natively?
 
S

shimmyshack

I find it odd that only Opera gets it right.

Isn't this type of thing useless for all MIME types that the browser can
open natively?

yes you are right.
but what if you dont set the correct mimetype for the file,
I haven't pushed at the edges on this one.

<html>
<body>
<iframe frameborder="0" width="100" height="100" src="" id="file"
name="file"></iframe>
<?php
$data = file_get_contents( 'http://groups.google.com/groups/img/gicons/
science_n_technology_42.gif' );
#$mime = 'image/gif'; #true mimetype
$mime = 'application/x-unknown'; #arbitrary one
?>
<a href="data:data:<?php echo $mime; ?>;base64,<?php echo
base64_encode($data);?>" target="file">click here</a>
</body>
</html>

The filename is the tough part, it's argueable whether a "save as"
dialog _is_ prompted for an accepted mime because we are setting an
unacceptable mime, for data which after all doesnt have an intrisic
mime. I just thought this was worth a mention, a curiosity for mozilla
based browsers, one wonders if it's a feature that might be removed
later - if it is never adopted by IE.
 
A

ASM

shimmyshack a écrit :
<html>
<head></head>
<body>
<iframe frameborder="0" width="0" height="0" src="" id="file"
name="file"></iframe>
<a href="data:application/vnd.ms-excel;base64,MSwyLDMsNA=="
target="file">click here</a>
</body>
</html>

Funny, on my Mac with FF in local, that opens Excel with in 1st cell
'1,2,3,4'
(after a dialog to 'open' or 'save' or 'cancel')
and ... nothing comes in the iframe.

the name of the sheat is : 5zfcwiy0-1.xls
- from where this name comes ?
- from where '1,2,3,4' comes ?

Where to find some more informations about this
href="data:application/vnd.ms-excel;base64,..." ?

Can we use it with other applications !MS ?
application/openoffice.org;
application/another-application;
 
S

shimmyshack

shimmyshack a écrit :




Funny, on my Mac with FF in local, that opens Excel with in 1st cell
'1,2,3,4'
(after a dialog to 'open' or 'save' or 'cancel')
and ... nothing comes in the iframe.

the name of the sheat is : 5zfcwiy0-1.xls
- from where this name comes ?
- from where '1,2,3,4' comes ?

Where to find some more informations about this
href="data:application/vnd.ms-excel;base64,..." ?

Can we use it with other applications !MS ?
application/openoffice.org;
application/another-application;

i've seen it used in ajax apps a bit, for small images, not sure why,
perhaps just because they could.

its not M$ compaitible - they never implemented this.
the name is randomly generated by your OS, and the source
MSwyLDMsNA==
is 1,2,3,4 base64 encoded
here's a start:
http://www.ietf.org/rfc/rfc2397.txt
and you could use it with whatever application deals with the mimetype
you specify in the source.

cool huh, but limited in scope
 
A

ASM

shimmyshack a écrit :
<html>
<body>
<iframe frameborder="0" width="100" height="100" src="" id="file"
name="file"></iframe>
<?php
$data = file_get_contents( 'http://groups.google.com/groups/img/gicons/
science_n_technology_42.gif' );

How, with JS, could I get content of my image file ?
(gif image on same domain)
#$mime = 'image/gif'; #true mimetype
$mime = 'application/x-unknown'; #arbitrary one
?>
<a href="data:data:<?php echo $mime; ?>;base64,<?php echo
base64_encode($data);?>" target="file">click here</a>

is it : href="data:data: ... "
or : href="data: ... "
?

</body>
</html>

The filename is the tough part, it's argueable whether a "save as"
dialog _is_ prompted for an accepted mime because we are setting an
unacceptable mime, for data which after all doesnt have an intrisic
mime. I just thought this was worth a mention, a curiosity for mozilla
based browsers, one wonders if it's a feature that might be removed
later - if it is never adopted by IE.

Tried with FF followed code (*) :

onclick="parent.myfile.location.href='data:image/gif;base64,'+
encodeBase64(document.images[0].src); return false;"

but the iframe tells :
picture “data:image/gif;base64,blah”
can't be dispayed because of errors.

Think 'data' is the image's url (encoded in base 64)


(*) encodeBase64() is a JS encoding function found here :
<http://www.ioswebdesign.com/index.php/2006/12/06/>
 
S

shimmyshack

shimmyshack a écrit :


<html>
<body>
<iframe frameborder="0" width="100" height="100" src="" id="file"
name="file"></iframe>
<?php
$data = file_get_contents( 'http://groups.google.com/groups/img/gicons/
science_n_technology_42.gif' );

How, with JS, could I get content of my image file ?
(gif image on same domain)
#$mime = 'image/gif'; #true mimetype
$mime = 'application/x-unknown'; #arbitrary one
?>
<a href="data:data:<?php echo $mime; ?>;base64,<?php echo
base64_encode($data);?>" target="file">click here</a>

is it : href="data:data: ... "
or : href="data: ... "
?
</body>
</html>
The filename is the tough part, it's argueable whether a "save as"
dialog _is_ prompted for an accepted mime because we are setting an
unacceptable mime, for data which after all doesnt have an intrisic
mime. I just thought this was worth a mention, a curiosity for mozilla
based browsers, one wonders if it's a feature that might be removed
later - if it is never adopted by IE.

Tried with FF followed code (*) :

onclick="parent.myfile.location.href='data:image/gif;base64,'+
encodeBase64(document.images[0].src); return false;"

but the iframe tells :
picture "data:image/gif;base64,blah"
can't be dispayed because of errors.

Think 'data' is the image's url (encoded in base 64)

(*) encodeBase64() is a JS encoding function found here :
<http://www.ioswebdesign.com/index.php/2006/12/06/>

I think it's the binary data.
What you would do is have an XHR call return base64 encoded data from
a serverside script, the string would then not have errors. Depending
on the browser, there might be a limit to the size of the image, this
method would be best for very small images.
 
L

-Lost

shimmyshack said:
shimmyshack a écrit :


<html>
<body>
<iframe frameborder="0" width="100" height="100" src="" id="file"
name="file"></iframe>
<?php
$data = file_get_contents( 'http://groups.google.com/groups/img/gicons/
science_n_technology_42.gif' );
How, with JS, could I get content of my image file ?
(gif image on same domain)
#$mime = 'image/gif'; #true mimetype
$mime = 'application/x-unknown'; #arbitrary one
?>
<a href="data:data:<?php echo $mime; ?>;base64,<?php echo
base64_encode($data);?>" target="file">click here</a>
is it : href="data:data: ... "
or : href="data: ... "
?
</body>
</html>
The filename is the tough part, it's argueable whether a "save as"
dialog _is_ prompted for an accepted mime because we are setting an
unacceptable mime, for data which after all doesnt have an intrisic
mime. I just thought this was worth a mention, a curiosity for mozilla
based browsers, one wonders if it's a feature that might be removed
later - if it is never adopted by IE.
Tried with FF followed code (*) :

onclick="parent.myfile.location.href='data:image/gif;base64,'+
encodeBase64(document.images[0].src); return false;"

but the iframe tells :
picture "data:image/gif;base64,blah"
can't be dispayed because of errors.

Think 'data' is the image's url (encoded in base 64)

(*) encodeBase64() is a JS encoding function found here :
<http://www.ioswebdesign.com/index.php/2006/12/06/>

I think it's the binary data.
What you would do is have an XHR call return base64 encoded data from
a serverside script, the string would then not have errors. Depending
on the browser, there might be a limit to the size of the image, this
method would be best for very small images.

Since we are a tad off topic anyway.

Here is code I use:

// PHP
$temp = 'image_name.x';
$temp_h = fopen($temp, 'rb');
$contents = fread($temp_h, filesize($temp));
fclose($temp_h);
$encoded = base64_encode($contents);
print '<img src="data:image/png;base64,' . $encoded . '" />';

You can see more at that Data URI article from Wikipedia.

Oh, and Internet Explorer 6 does not play Data URIs. I have no clue
about version 7.
 
A

ASM

shimmyshack a écrit :
I think it's the binary data.
What you would do is have an XHR call return base64 encoded data from
a serverside script, the string would then not have errors.

I would prefer to do everything in JS.
there might be a limit to the size of the image, this
method would be best for very small images.

A small gif in pure html href="data: ..." :
http://stephane.moriaux.perso.orange.fr/truc/favicon.gif.html

Hope that works with IE ?
 
L

-Lost

ASM said:
shimmyshack a écrit :

I would prefer to do everything in JS.

My friend, I seriously doubt this will happen. Even though I have seen
some neat image creation methods in JavaScript, I doubt very much binary
interaction can go on. I would love to be proved wrong on this one though.
A small gif in pure html href="data: ..." :
http://stephane.moriaux.perso.orange.fr/truc/favicon.gif.html

Hope that works with IE ?

Nope, not in Internet Explorer 6 on Windows XP SP2.

Try this one in a browser that reads it:

<img
src="data:image/png;base64,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"
/>

(I hope all this comes across, I am not entirely sure how to clip this
at a reasonable length.)
 
S

shimmyshack

My friend, I seriously doubt this will happen. Even though I have seen
some neat image creation methods in JavaScript, I doubt very much binary
interaction can go on. I would love to be proved wrong on this one though.




Nope, not in Internet Explorer 6 on Windows XP SP2.

Try this one in a browser that reads it:

<img
src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAbgAAAAsCAYAAAAXSq1SAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH1wUMDzEDFdGnygAAACl0RVh0Q29tbWVudABDcmVhdGVkIHdpdGggVGhlIEdJTVAsIGJ5IE1pY2hhZWykgeE7AAALg0lEQVR42u2de7BVVR3HP+fyMJSXyktApSQ0qWGCJiSy1MwHOuUrhjKZJhgrbEQZIlOHkXAK05JemoMpSiaJCgEhAmFXAUEREQqvCkogD0NJQYiHePpj/fbcfffd5+zH2eeee67fz8ydwz5n771++7fWb/3W77fW2oAQQgghhBBCCCGEEEIIIYQQQgghhBBCCCGEEEIIIYQQQgghhBBCCCGEEEIIIYQQIoRWUoEQQogq5GygB/CmVCGEEKIlsQdYV+yEGulICCFEFdIB2J+FgxsI3A7UAv8AFtvni8ATwIUh11wD3JbRg3QBZgILrew88EyVVMIwYDYwB3gf2F7i/bLUa7lII2NP4OfACuA54J/Av4GVwMgMZesC3GdtaZG1pYXqKxrUW1Pa20nA68CDEec9DtS1MH1PCuj42QrLc4zJ9BjwV2AL8CfghBLvOwp41fq/vRnb4H9K7QxmWwO8Cmgf+D0HnA8cAboGfqszwctBHni5Cht0Fjopp14r9ZwjgJ1mCG0D7etkoG8ZZc0Da+XbitZbOe2tNbAN+F9I/+LHcwLdWqDeP2fP9kIFZegErAF+YnYHMDjjAWCx9rU2pe3ekzaCa29R2sctgpthHjhYwJN2n7OauEIOqT9qEVwB/BkYDfwxUK95i+I2llmGl1QNFbO3D3CZoI9ZtiOqr/psC9TtQPv8WwVluAP4LzDF54TW2OeRJig/rQ3uSOvgJgD9gbHAuzEKOjOhYDlgIjA/5YPtVZ9T9RwHTMOlue
dXUI65qoqK2VtH4CBuLmV4gXM+7evIBrZA3Z5onz+rUPm9ge8C9wYirAEWdY1pxjaY2sFdZJ8rE4TZSdISvwauB+5O+WC71OdUPaOBzsD0CpXfLTBSFU1vbxcD84CHrM/pEHLOGOAm3Pz1oBaoW68dHqhQ+V83X7DSAo+e9t104FTc2ovbC9RNpW1wZ1oHd9g+PxUzvF2aQKjf2/37lRCWv64+p+q52D4rtWBoaBwjEWW1t8us77gHl6a8JPB7Z6A7LlW9POFAulroXKDjb9NE5Z9hn9uBOy342GeDidOB1cB4YAkN58ibgw3uSFvwDyxcrYvp5IKUe5HJlVXYkLXIpCHv4Pay5Cok50STU9tlitdbueytHbDed7yGxgsarqU+dXk9LXOhyYKA3q8GXsOlb5uC5VZ+rkgg9KSdMyrj9lWKDeZxi9BSUWOjqrxFWzOAc2IIsgi3s/wD6lfHrAKus99Pxi0qmAm8BXzbFDsVt5R+rl23wRSyFbgh5MHuwK2s2mKNYUjgnC8CT9k9VwCTcW9umYJb+vq+yXk3sAk3x/DDkOcJkzerCs4lkCeNXjtY6ufvuHmOt+y7G4BXzLkMyVAnUTIG+RB4I4UeewOP2jN08n3/Y5M7blu6v0CHPszazAzc5PcU3HxhlC7PiNBRh4T3IKZsbVPUYRKbjWNvaezkInsOj2tMhh4++1hukZ0XaeSpnz4hhs37+6vuwG9w876rgLetzCgZvfstNie8APiLtcF9NJyfnA+8F3KfYmU/5XMwk3BL3/vHlOVx4PgSHdy/YgxIv2znzEmg8xzwS4v+p5meguX4bfAEXJr2Zfv063EpjdeC5HFbG1KTA75hxpe3v624/UqnpvDWPS0M/iZwNIWXh+ZxK+dqcKvsgo06j9t7V2PGkMfliT06mjKvsuM+ds53QuQbYqmAXTTeUxFX3iwimzjylKJX77rVptM2dnxvGXQSN4Lba20rCefiVt2NszJ+
Yd+Pt+MxCdrSghA5z8KtGvMiloF2zuQEusyqPihBtqh2lDSCK2Zvae3krkB9HWsd2zg7/hIN5+iPsoHB5JB7Rdl8L+u7xvkG8FHbHybaIOxyX3TjXXdjAZ2F6TCq7JV2PMWcQb+UspQz4+LV60sJdP4tX1vM2cAoHxG9tk+g13xW2Z8a4CvAAzZC9JzdNN/oKo7S7jMv3Ar4mv3+SAGD8jZ1drHjWYHf/U7Yf75nKIutUmpsdJmn4Uq9oHyvlCBvlg6umDyl6NW7rofvuwPWwWatk7gObpmd96GNaDebM3rVyq6zv+W+VMQm4DT79yO4/VMjgd24ifEkbWlFiJxLrRP1zzVsD0SaUbrMqj4oQbaodpTUwRWztzR2krPOPLhoZKalLXO4zd9DA7+vtAg4SJTNP2CZqGMKtI0w9uPmhloHvj9I/absOB1xVNlr7Hgn8AfcSw7203BLRBxZyung2oQ4uCidP20Rbk2RclbE7OcKObjMaW952M1WwF0JlLbLOq8zcZs73y0Qivsr3xulrPONFvNFzve40BT9mG90vz6hAuPKWw4HV5fAwcWRM+y6/sApZdBJXAd3nY0Ak0ymH+X7d1/rOPbgJsNJ2JbWhsi5PyRtuomGe4GidJlVfZCBbEnmbAtlB6LsLY2d9MXtrWsbYrd54KuWOguO0KdapxnWZorZ/O4Q3T2K2w5ViFV2j1UWpRzvi5wHJNB3VNnr7ZoLcC/MON+Ob0koSzkd3EkhgUaUzvfTcHFSWDlrS3BwEygjPWz0vDeB0g7bd7stX9+3QLToNyAvNH7Rjm+JYXDX+hoMNrIMnhNHgXHkbQ4OLo6ccRpxVjqJ26l2sAjk8pT67Gd5+kMFHENUW9pQwMEFN5a/E5gPiHq+LHVUqmylOrg49pbGTr5P+ItyW1ukspPwfWFe2mtw4Psomz9A8hcG9LJI9JDd6whuvvKTCfUdVXawHXawsmoTylJOBzfCzhmeQOeHLS
1ZrJwNJTi4spLDTUzvTKC0OjOCmsBIzt9YBwWUdLodT7fjJTEMLpi26ZjSwcWR9w3cRuVKOrg4cmbl4LIqy+McM4IeEYOpViHOcR1wqdX3wpDRflRbKpQyec93r+52zhMJni9rHZUiW6kOLo69xXneIA/bXxh3Uj93Exb55Wm88CzK5lfZAMGf4jst5D5hdMLNL9baPZeG6CxXJCUcVXaY3ldb+rFdTFluIv1cnFd+N8JXzNdY23s6UMdROt9o7bUmoj9J6+Am4eYmCxK1InKARWj3A1/wnd/GlNkLuDmBIqda3tZbYdXZRiWf8J3jvRGlK27O5BIbrfzW19nFSaP2tvC9D/CrlBUfR94+FH+HXlMQR87mWtZS3Cq/ebg5tNYBx/ZT3AT9uYHrfodbgTcb+JGldYJLmKPaUhi3maF6cz+j7Zpbm0F9ZCFbmkxNOZ53sKU1w3jIPoeG/LbJotbzEtr8zZYOHekbHCwievPyWOv4H/ZlGg76fvf2YZ0IfB73akMyKLvWrhmEm9ecFiHLjeb4SmG4ZTdG+eywI/VvOLkUN18eV+ez7PrzcFMLSfrJt33967ACbWk8bhFkSVHaCOt8tuCW/67Drf6ZhVsiWohnabxcNodbNfUa9f8rQfBN8Q9ahzbV8rcbabh4YC2NVz55I3iPq63svZYyOcWOn/ads5yGmwSfo/GmwSh5vRRY3FxwbZGUbhx5StHrMqLfxp6FTgrJGMWxuBe9Lgaet+zAbju+IhCd9bey/cuR54REBFFtaQnhr6G70kbQz5jBX5BQl1nVBylki9uO4tpsHHuL87xBttmgpJD+NlD4DTdzLaIgoc0Pwa3aW2L92K00XrQRZII9Vy1ubmkmDd+uf7a11c3W4a4i/L2KxcpeG0jlec59nw0UxtogrZgszxPx4uGIQeabJs9Ya1/brH3VAt8roKconR9tfmIPbiHSMtyGfWLY4GVm/9ttABwWGb+AW5RTVayk
ev5bjD7WCLsi1JaEEOUi1Rxcc3yDQ68qUvpncDlgvRezedJLKhDio0vrZijTcRYVVQPz1ISaNdXUloQQGdMcI7h2qhahtiSEaIkOLqdqEWpLQohSaY4pyq3E+w9WhVBbEuKjwQ7cqkwhhBBCCCGEEEIIIYQQQgghhBBCCCGEEEIIIYQQQgghhBBCCCGEEM2Z/wO4B+RS04XfkAAAAABJRU5ErkJggg=="
/>

(I hope all this comes across, I am not entirely sure how to clip this
at a reasonable length.)

tee hee! it does i am afriad. but hey parallels doesnt suck, (if it
updated without a hitch it would be nice)
 
A

ASM

-Lost a écrit :
My friend, I seriously doubt this will happen. Even though I have seen
some neat image creation methods in JavaScript, I doubt very much binary
interaction can go on. I would love to be proved wrong on this one though.

OK.

I've played with this data:type-mine :
http://perso.orange.fr/stephane.moriaux/truc/html_to_xls.shtml
tested successfully in FF,
Opera has a secutity or sthg to abort,
iCab wants to download the data ...
Safari donwloaded an Excel file, this file opens correctly in Excel.

Don't know if that could be very usefull ... :-/
Try this one in a browser that reads it:

TOO COOL ! ! !
works fine with my FF 2, Safari 1.3, Opera 9, iCab 3,
and *even with my old NC 4.5* ! ! !

No french translation with mouseover ? :)
 
L

-Lost

ASM said:
-Lost a écrit :

OK.

I've played with this data:type-mine :
http://perso.orange.fr/stephane.moriaux/truc/html_to_xls.shtml
tested successfully in FF,
Opera has a secutity or sthg to abort,
iCab wants to download the data ...
Safari donwloaded an Excel file, this file opens correctly in Excel.

Don't know if that could be very usefull ... :-/

In Opera 9.10 on Windows XP SP2, all I get is your error about it being
Internet Explorer.

You test this way:

if(document.getElementById && !document.all)
// your error

But Opera supports document.getElementById and document.all.

Was that on purpose?
TOO COOL ! ! !
works fine with my FF 2, Safari 1.3, Opera 9, iCab 3,
and *even with my old NC 4.5* ! ! !

No french translation with mouseover ? :)

Sorry, no! I don't know how to say "it sucks" in French.

if (Mac.Internet_Explorer == 'merdeux') { alert('Oui!'); }
 
A

ASM

-Lost a écrit :
In Opera 9.10 on Windows XP SP2, all I get is your error about it being
Internet Explorer.

You test this way:

if(document.getElementById && !document.all)
// your error

But Opera supports document.getElementById and document.all.

I know.
Was that on purpose?

because Opera did cry about I don't know what
and because anyway I don't like Opera
hop! outside !
but you can see here what he does with my script :
http://perso.orange.fr/stephane.moriaux/truc/html_to_xls_op

Tiens ?
is was not simple to fix, but this time that works with my Opera 9
(easiest if Excel is opened first)
if (Mac.Internet_Explorer == 'merdeux') { alert('Oui!'); }

:)

if(any.Internet_Explorer) { alert('garbage');
 
A

ASM

Randy Webb a écrit :
-Lost said the following on 5/12/2007 4:32 PM:

Doubtfully. It probably comes from the belief that the only browser that
supports both is IE and that is wrong.

Not at all ! I know Opera as iCab accept document.all
A better test, in that code would be if(!IE)

Yes I did test it (1st line in demo's JS) but my Opera played me a "tour
de cochon" so I left it.
 
L

-Lost

ASM said:
-Lost a écrit :


I know.


because Opera did cry about I don't know what
and because anyway I don't like Opera
hop! outside !
but you can see here what he does with my script :
http://perso.orange.fr/stephane.moriaux/truc/html_to_xls_op

Tiens ?
is was not simple to fix, but this time that works with my Opera 9
(easiest if Excel is opened first)

I don't even have Excel on this machine and it works just fine
(OpenOffice.org).
:)

if(any.Internet_Explorer) { alert('garbage');

I would agree with that, except Randy would beat me (maybe Jim too?).
And quite frankly, I don't have any good answer as to why I think all
Internet Explorer related stuff is crud. ;)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,744
Messages
2,569,484
Members
44,903
Latest member
orderPeak8CBDGummies

Latest Threads

Top