Blog

Archive for the ‘Web Development’ Category

Linking to Google’s Hosted jQuery Repository

Sunday, November 30th, 2008

jQuery Hosted on Google:

Here’s the code to link to Google’s jQuery repository. It grabs the latest jQuery version.

<script src="http://code.jquery.com/jquery-latest.js"></script>

If you want to target a particular version of jquery:

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>

Google link to jQuery:

You can go here http://code.google.com/p/jqueryjs/downloads/list for the download list and right-click copy-link location.

Jquery CDNs

Go to http://docs.jquery.com/Downloading_jQuery for a list of CDNs

 

Updated: 6/14/11 12:22pm

How to Export or Save Coda Sites

Thursday, October 23rd, 2008

Where is Coda Site Information Stored?

Coda currently does not have a way to export or save sites like you can using Transmit. But there is a way to save your coda site settings if you need to migrate your site data from one computer to another. You  will need to save a file from your preferences folder.

Save the Coda.plist file:

December 2011 Update:

  1. “For Lion, the Library folder is hidden. To get do it, go to Finder, then at the top menu: Go -> Go to Folder… , and type in: ~/Library”
  2. Then look under: Preferences/com.panic.Coda.plist

~/Library/Preferences/com.panic.Coda.plist
~/ = Your Mac UserName

This info was originally found at: Google Groups | Coda User

Thanks everyone for your comments and help with this topic! I have updated the instructions with your inputs!

Forcing Internet Explorer to obey css using Javascript, CSS hacks and specific style sheets

Saturday, September 27th, 2008

I know all of this has been written before, but this post has the best of the best in combating the ie6 and ie7 css issues.

Hate IE6?

I found an article that explains that this line of code can crash ie6:


< style >*{position:relative}< /style >< table >< input >< /table >

I have not tried this out. But I have one question: What in the hell was this guy doing to discover this? Either some really bad code or his page was fragmented some how.

How can I make IE6 behave like a normal Browser?

Enter Dean Edward’s IE7.js

This lightweight javascript library forces internet explorer 6 to accept a number of css selectors that standards-compliant browser allow.

(more…)