[jQuery] Re: Managing scripts in AJAX applications

2009-04-11 Thread Jason Huck
On Apr 1, 1:39 pm, JMan jbeck...@gmail.com wrote: One thing I have been struggling with is AJAX applications is managing the js code that powers them. For example if you have a page that loads content from an AJAX call to the server and that content also has js code associated with it in

[jQuery] Re: Managing scripts in AJAX applications

2009-04-10 Thread Rick Faircloth
@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of JBeckton Sent: Thursday, April 09, 2009 7:31 PM To: jQuery (English) Subject: [jQuery] Re: Managing scripts in AJAX applications Hey... I am using ColdFusion as well on the FuseBox Framework. I have somewhat of a slick way to handle the js

[jQuery] Re: Managing scripts in AJAX applications

2009-04-10 Thread Rick Faircloth
...@googlegroups.com] On Behalf Of Eric Garside Sent: Thursday, April 09, 2009 7:46 PM To: jQuery (English) Subject: [jQuery] Re: Managing scripts in AJAX applications I put together a pretty basic DOMBuilder tool for this purpose, called HSJN (HTML Snippet Javascript Notation). You can view/get the source here

[jQuery] Re: Managing scripts in AJAX applications

2009-04-10 Thread JBeckton
To: jQuery (English) Subject: [jQuery] Re: Managing scripts in AJAX applications Hey... I am using ColdFusion as well on the FuseBox Framework. I have somewhat of a slick way to handle the js resources, it was great at first but the more screen/interfaces I have the more difficult it becomes

[jQuery] Re: Managing scripts in AJAX applications

2009-04-10 Thread Rick Faircloth
@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of JBeckton Sent: Friday, April 10, 2009 4:05 PM To: jQuery (English) Subject: [jQuery] Re: Managing scripts in AJAX applications I feel your pain... The project I am working on could have went faster had I not used AJAX so much, But the only

[jQuery] Re: Managing scripts in AJAX applications

2009-04-10 Thread JBeckton
: Friday, April 10, 2009 4:05 PM To: jQuery (English) Subject: [jQuery] Re: Managing scripts in AJAX applications I feel your pain... The project I am working on could have went faster had I not used AJAX so much, But the only way to get better at it is to use it more and more. Then you have

[jQuery] Re: Managing scripts in AJAX applications

2009-04-10 Thread Rick Faircloth
: [jQuery] Re: Managing scripts in AJAX applications It's the transferring variables between functions in separate js files is the big problem. If the functions are in the same file it's no problem. On Apr 10, 5:02 pm, Rick Faircloth r...@whitestonemedia.com wrote: Look interesting!  When you

[jQuery] Re: Managing scripts in AJAX applications

2009-04-10 Thread JBeckton
This is interesting not sure I would create an entire document with it but would be fun for certain areas of code. Personally I try not to create too much of my DOM on the fly with js as it has it's own set of challenges with accessibility, automated QA tools and such.. hsjn does make me wonder

[jQuery] Re: Managing scripts in AJAX applications

2009-04-09 Thread JBeckton
Hey... I am using ColdFusion as well on the FuseBox Framework. I have somewhat of a slick way to handle the js resources, it was great at first but the more screen/interfaces I have the more difficult it becomes to manage the js. I basically have a .cfm page with html and dynamic data with none

[jQuery] Re: Managing scripts in AJAX applications

2009-04-09 Thread Eric Garside
I put together a pretty basic DOMBuilder tool for this purpose, called HSJN (HTML Snippet Javascript Notation). You can view/get the source here: http://code.google.com/p/hsjn It gives you the ability to specify jQuery chains within it's syntax, and will parse it out into dom nodes you can

[jQuery] Re: Managing scripts in AJAX applications

2009-04-02 Thread Rick Faircloth
Hi, JMan... Did you get any answers to your questions? I've been working a lot with jQuery/ajax/ColdFusion lately. It's all new to me and I've been learning a lot. Perhaps some of what I've learned may be of use to you. I haven't been injecting HTML into the DOM of the ajax calling page, but