Showing posts with label IE. Show all posts
Showing posts with label IE. Show all posts

Tuesday, February 28, 2017

ie 11 history folder

C:\Users\user\AppData\Local\Microsoft\Windows\History

history is hidden so just write it out

Friday, September 9, 2016

Wednesday, January 14, 2015

Force filedownload

response.AppendHeader("content-disposition", "attachment; filename=" + FileDownloadName);

Friday, January 10, 2014

Error: access is denied with code 0

this could be cross - domain calls in javascript

try in chrome without security

Wednesday, January 8, 2014

Cannot find proxy server (Chrome)

this should be (perhaps) unchecked


if Fiddler crashes this can be set and mess your settings- beware

Wednesday, November 6, 2013

HTTP 304 - visibility

You will only see on the browsers network traffic- not Fiddler

Monday, November 4, 2013

How to get to dynamically loaded javascript in browser debugger

in IE if you run it once the script will be available in the source
all browsers - use "debugger"  keyword
all browsers - place breakpoint in static JS and f10 from there

Friday, February 15, 2013

Checkboxlist in Chrome not rendering well

when the Checkboxlist  was in a div - the text was wrapping.

so I did this

   //////////////////////////////////////
            $('document').ready(function () {
                $(":input[id^=chkListblah_]").each(
                          function () {
                              $(this).get(0).parentElement.style.whiteSpace = "nowrap";
                            }
                    );
            });
          
            //////////////////////////////////////

Count of checkboxes in a checkboxlist object

since thisis rendered by asp.net as a table I thought a count of the cells would work.
it worked in IE but not Chrome

so I did this

$(":input[id^=chkListblah_]").length;

where the checkboxes id's were chkListblah_1, chkListblah_2 etc.

Thursday, February 7, 2013

Bizarre HTML formatting by IE


<TABLE border=0 cellSpacing=0 cellPadding=0 width="100%">
<TBODY>
<TR>
<TD></TD>
<TD >
<SPAN>Hody&nbsp;Doe:&nbsp;!away_we_go</SPAN>
</TD>
<TD width="100%"></TD>
</TR>
</TBODY></TABLE>



since the 3rd td is 100% it forces the 2nd td into 2 lines because it thinks this is a new sentence


Thursday, November 8, 2012

IE9

tools-> compatibility view settings ->intranet by default is on

regardless of setting you can set the web page with the following meta

<meta http-equiv="X-UA-Compatible" content="IE=8" />

Monday, July 23, 2012

Silverlight debugging in VS


A few things you may have to do:

  • clear cache
  • on the web tab of project click silverlight debugger
  • when attaching to process click select->debug these code types->silverlight

Thursday, May 17, 2012

Visibility in IE

Visibility in IE - make sure you pass valid values and it works fine
also the difference between visibility and display