Showing posts with label Chrome. Show all posts
Showing posts with label Chrome. Show all posts

Monday, March 7, 2016

Chrome f12

to skip code you have to comment it out

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

Thursday, October 17, 2013

Friday, October 11, 2013

Chrome clear cache

1. In chrome, open the chrome developer toolbar. (shortcut F12)
2. Click and hold the “Reload” button on the chrome. After a second you get the options as shown in the screen shot below.
3. Select the third option : “Empty Cache and Hard Reload”

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.

Monday, November 12, 2012

Chrome js debugger

does not loo through jquery's each

this was painful learning experience for me