camino

Using AppleScript to grab the URL from the frontmost window in web browsers: The definitive list

I built a widget that grabs the URL from the frontmost window in Safari, then allows you to shorten it using the tr.im API. Works sweet as. I want to make this more flexible, so am investigating how to grab an URL from other browsers. Here's the AppleScript that works in Safari: tell application "Safari" return URL of front documen...

HTML Entity displaying wrong in Camino

I'm trying to show the characters ☜ and ☞ in my HTML page. Every single browser I've tested displays them properly, except for (inexplicably) Camino. Instead, it shows this: That's what it renders for ☜. The symbol it shows for ☞ is similar. If for some reason you can't see those characters properly, here's the HTML entities I'm usi...

javascript .children not working in Camino Browser

This is an odd one, for whatever reason, getting the children of an element doens't work in Camino browser. Works in all other browsers. Anyone know how to fix this? Google is no help :( var site_result_content = document.getElementById(content_id); site_child_nodes = site_result_content.children; alert('started'); for(i=0;i...