Determining the Problematic CSS File in Firebug -


i have displayed in firebug console

"networkerror: 404 not found - http://********.com/images/slider-img/ajax-loader.gif"

so it's telling me can't find background image. can pinpoint css file image has been declared background-image property?

i have 4-5 css files being referenced in document , manual way of finding out open each of files , find image. wondering if avoided , have firebug tell me css file culprit...

firebug (as of version 2.0.x) doesn't directly show initiator of network request. requires platform support, requested in bug 563623.

so, workaround can this:

  1. switch css panel.
  2. click search field @ right side of firebug.
  3. ensure option multiple files checked.
  4. enter ajax-loader.gif

=> css panel switch css source containing rule containing image value.

notes: there may several properties referring different images named ajax-loader.gif. should check whether path image corresponds 1 shown in error message. (within search field can hit enter next match.)

it's not sure request comes css. may come javascript, e.g. through ajax request or appending <img> tag dynamically.


Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -