Below is a list of resources to speed up web development/debugging
Safari does not have a debugger but you can change your Safari configuration to enable a Develop menu option. To enable the Develop menu option you will need to change your
com.apple.Safari.plist file. This is an XML configuration file typically located in
%WINDOWS_PROFILE%\Application Data\Apple Computer\Safari\Preferences\com.apple.Safari.plistMake sure that the following is in the configuration file:
<key>IncludeDebugMenu</key>
<true/>
<key>IncludeDevelopMenu</key>
<true/>
Save the file and close all Safari browser instances. The next time you open the browser, you will see the Develop menu option.