[jQuery] Re: How to make ajax call to subdomain

2009-12-10 Thread Dominik
i'm pretty sure this wont work because of the "same origin policy" as i already mentioned in another thread: http://groups.google.com/group/railo/browse_thread/thread/cb189b4a9878c506 On 10 Dez., 01:53, PiotrJaniak wrote: > $.ajax({ >        url: "http://api.example.com";, >        success: func

[jQuery] Re: parsing big JSON file

2009-12-01 Thread Dominik
need some values out of a really big json file you should think about implementing some kind of filter server-side. to let the client download 100mb just for a bunch of data isnt really viable anyways ;) dominik On 1 Dez., 09:44, km wrote: > Hi all, > > I am currently using $.getJSON

[jQuery] Re: PHP jQuery on different port

2009-11-27 Thread Dominik
i guess your experiencing the "same origin policy" problem here, which lets you only load data/whatever via ajax from the same origin as the calling page! it seems that the origin isnt just the domain but also the used port. so to make this work you could either use a "new" http header field which

[jQuery] Refreshing Problem

2009-11-10 Thread Dominik Kohlstruck
Does noone have a solution to this...? Hey guys, I'm working on a "status"-Updater. It works, there is just one problem, after sending a Status I have to manual reload the page to let the script work again. Do you can help me please? Here's the code: $(document).ready(function(){ $("form#sta

[jQuery] Re: [treeview] Don't close subtree when clicking on tree "header"

2008-11-13 Thread Dominik Deobald
selector for that click: > ":has(>ul):not(:has(>a))").find(">span") > > So remove or replace the span on the parent item. > > Jörn > > On Thu, Nov 13, 2008 at 4:06 PM, Dominik Deobald <[EMAIL PROTECTED]> wrote: > > > I'm using tre

[jQuery] [treeview] Suggestion: function callback after async update

2008-11-13 Thread Dominik Deobald
Just a quick suggestion for future versions of treeview: I've added if (typeof(settings.asyncload) == 'function') { settings.asyncload(container); } at the end of the async load function to be able to inject some of my own code after an AJ

[jQuery] [treeview] Don't close subtree when clicking on tree "header"

2008-11-13 Thread Dominik Deobald
item 1.2 + item 2 item 1.1 and 1.2 should not disappear. Is there a simple way to achieve that? Any help appreciated. Thanks, Dominik

[jQuery] jQuery Form Plugin Action with "#"

2008-05-14 Thread Dominik Weiss
he "named anchor" (line 59 of jquery.form.js): url: this.attr('action').replace(/#.*$/, '') || window.location.toString(), It works, but I am not very happy with it. Is there another way or am I doing something wrong? Or did I found a bug? ;-) Dominik