Thierry Schellenbach has implemented a Prototype plugin that allows you to do cross site remoting using the dynamic script tag method that other frameworks such as Dojo and jQuery have supported for awhile. You can implement this by simply setting crossSite: true as a config parameter to Ajax.Request. Code example: new Ajax.Request('myurl', { method: 'GET', crossSite: true , parameters: Form.serialize(obj), onLoading: function() { //things to do at the start }, onSuccess: function...
Well, I was looking on the web for JavaScript fuction that return any DOM element position and also consider browser scroll. I finally came up with the solution and wanted to share it with you. In order that the script will work you need reference to Prototype JavaScript Framework. Well here is the JavaScript code: function getDocumentWindow(doc) { return (doc.parentWindow || doc.defaultView); } function getPosRelativeToWindow(element, topWindow, considerScrollOffset) { var l = 0, t = 0; var pos...