Re: jQuery: firing a click event from a class instead of an ID

2015-03-20 Thread Scott Stewart
2011/11/03/jquery-1-7-released/ On Fri, Mar 20, 2015 at 1:35 PM, Byron Mann wrote: > > .on() in jquery 1.7+ is probably what to use instead of delegate(). I only > say this as the documentation notates on() supercedes delegate(). And they > have a habit of deprecation in these instances. &g

Re: jQuery: firing a click event from a class instead of an ID

2015-03-20 Thread Byron Mann
.on() in jquery 1.7+ is probably what to use instead of delegate(). I only say this as the documentation notates on() supercedes delegate(). And they have a habit of deprecation in these instances. $(document).on(event, selector, function ) On Mar 20, 2015 1:08 PM, "Scott Stewart&qu

Re: jQuery: firing a click event from a class instead of an ID

2015-03-20 Thread Scott Stewart
> > > -Original Message- > From: Scott Stewart [mailto:webmas...@sstwebworks.com] > Sent: Friday, March 20, 2015 12:13 PM > To: cf-talk > Subject: jQuery: firing a click event from a class instead of an ID > > > I have a button on a page with a class att

RE: jQuery: firing a click event from a class instead of an ID

2015-03-20 Thread Robert Harrison
rom: Scott Stewart [mailto:webmas...@sstwebworks.com] Sent: Friday, March 20, 2015 12:13 PM To: cf-talk Subject: jQuery: firing a click event from a class instead of an ID I have a button on a page with a class attached to it (several buttons actually) shouldn't I be able to attach a jQuery cli

jQuery: firing a click event from a class instead of an ID

2015-03-20 Thread Scott Stewart
I have a button on a page with a class attached to it (several buttons actually) shouldn't I be able to attach a jQuery click event to the buttons using a class as a selector: $(".editPathway").click(function(){ var x = $(this).data("id"); $('#pathEditFrm'

Re: How do I pass this jQuery variable as arguments to a cfc method?

2014-01-16 Thread Steve 'Cutter' Blades
You could just run your form through this tiny plugin, prior to submitting your ajax request https://github.com/cutterbl/CFQueryToForm/blob/master/resources/scripts/jquery/jquery.serializejson-0.2.js Steve 'Cutter' Blades Adobe Community Professional Adobe Certified Expert Advanced

Re: How do I pass this jQuery variable as arguments to a cfc method?

2014-01-16 Thread Steve Milburn
You cant break the string into individual arguments. It will be one argument that contains a string with comma separated values, which can be easily handled with CFs list functions. I'm not sure what you want to do with them in your CFC, but you can loop through the values like so: ... here yo

Re: How do I pass this jQuery variable as arguments to a cfc method?

2014-01-16 Thread Rick Faircloth
Hold the horses! I changed the join from: specialIDList.join(); to: var specialIDList = specialIDList.join(); and it worked! I think the var, specialIDList, was not available to the ajax function since it was being recreated in the .each loop. So, now do I have to loop over the multiple var

Re: How do I pass this jQuery variable as arguments to a cfc method?

2014-01-16 Thread Rick Faircloth
Hi, Steve... I just gave that a try, but still get an error in Firebug: "500 Element SPECIALIDLIST is undefined in ARGUMENTS" Also, in the console, I still get what appears to be the same when I use console.log(specialIDLlist): [ "27", "28", "26" ]. Perhaps something is missing on the cfc metho

Re: How do I pass this jQuery variable as arguments to a cfc method?

2014-01-16 Thread Steve Milburn
Inside your .each loop you want to push specialID to your array like so: specialIDList.push (specialID). Afterwards when you are preparing your values object to be sent to the server you do specialIDList.join to put them into a string. On Jan 16, 2014 12:32 PM, "Rick Faircloth" wrote: > > Here's

Re: How do I pass this jQuery variable as arguments to a cfc method?

2014-01-16 Thread Rick Faircloth
Here's the client-side code: $(document).ready(function() { $('#newsletter_preview_button').click(function() { var emailNewsletterGreeting = $('#email_newsletter_greeting').val(); var specialIDList = []; $('.special_title_checkbox:checked').each(function() { var specialID = $(this)

Re: How do I pass this jQuery variable as arguments to a cfc method?

2014-01-16 Thread Raymond Camden
On Thu, Jan 16, 2014 at 9:54 AM, Rick Faircloth wrote: > > Hmmm... > > I tried using the specialIDList.push(specialID) approach, and I get the > correct > output in console.log, [ "27", "28", "26" ], but I also get the error in > Firebug, > "500 Element SPECIALIDLIST is undefined in ARGUMENTS. >

Re: How do I pass this jQuery variable as arguments to a cfc method?

2014-01-16 Thread Rick Faircloth
7;s sent in the form above, even when I specify the argument as "array" type. Suggestions on what to do now? Something else on the client side with jQuery/JS or something on the method side with CF? Thanks for any feedback! Rick On Wed, Jan 15, 2014 at 9:20 PM, Raymond Camden w

Re: How do I pass this jQuery variable as arguments to a cfc method?

2014-01-15 Thread Raymond Camden
assign them to individual > cfarguments. > > Or does a cfargument type of "list" handle the ID's without having to > break down the list into individual arguments? > > Not exactly. You can't pass complex variables like that via HTTP. It has to be ser

Re: How do I pass this jQuery variable as arguments to a cfc method?

2014-01-15 Thread Rick Faircloth
Thanks for the tip, Jon! I'll have to check out those Chrome Dev Tools! Rick On Wed, Jan 15, 2014 at 6:18 PM, Jon Clausen wrote: > > I like Postman because I can manually test web services, including HTTP > verbs and enter form and URL variables against services to test responses > and error

Re: How do I pass this jQuery variable as arguments to a cfc method?

2014-01-15 Thread Rick Faircloth
.@whitestonemedia.com > > > >wrote: > > > > > > > > > > > Hi, all... > > > > > > > > I've approached this problem from every direction I can think of and > > with > > > > reference to many, many websites, but

Re: How do I pass this jQuery variable as arguments to a cfc method?

2014-01-15 Thread Raymond Camden
Ah - so it lets you do ad hoc testing. That is cool. On Wed, Jan 15, 2014 at 5:18 PM, Jon Clausen wrote: > > I like Postman because I can manually test web services, including HTTP > verbs and enter form and URL variables against services to test responses > and error handling in a variety of

Re: How do I pass this jQuery variable as arguments to a cfc method?

2014-01-15 Thread Jon Clausen
I like Postman because I can manually test web services, including HTTP verbs and enter form and URL variables against services to test responses and error handling in a variety of formats. It also has tabs that parse your return data, like the network tab does, but in a better format. It's b

Re: How do I pass this jQuery variable as arguments to a cfc method?

2014-01-15 Thread Raymond Camden
> Hi, all... > > > > > > I've approached this problem from every direction I can think of and > with > > > reference to many, many websites, but I still can put together an > answer. > > > > > > I have this HTML in a form: > > > >

Re: How do I pass this jQuery variable as arguments to a cfc method?

2014-01-15 Thread Rick Faircloth
t; > > > > > > > > > >> value="#special_title#" type="checkbox" name="special_title"> > > > > #special_title# > > > > > > > > > > Which is output into

Re: How do I pass this jQuery variable as arguments to a cfc method?

2014-01-15 Thread Raymond Camden
How is that better than the Network tab itself? On Wed, Jan 15, 2014 at 3:59 PM, Jon Clausen wrote: > > On a related note, the Postman extension for Chrome is great for testing > what your remote CFC's are doing with form variables. > > > On Jan 15, 2014, at 4:53 PM, Jon Clausen > wrote: > > >

Re: How do I pass this jQuery variable as arguments to a cfc method?

2014-01-15 Thread Jon Clausen
>> > value="#special_title#" type="checkbox" name="special_title"> >> >> #special_title# >> >> >> >> >> Which is output into this: >> >> >> >> >> >> This jQuery processing t

Re: How do I pass this jQuery variable as arguments to a cfc method?

2014-01-15 Thread Jon Clausen
ecial_title#" type="checkbox" name="special_title"> > > #special_title# > > > > > Which is output into this: > > > > > > This jQuery processing the inputs: > > $(document).ready(function(

RE: How do I pass this jQuery variable as arguments to a cfc method?

2014-01-15 Thread Robert Harrison
> It is **impossible** to document.write... > yes, your right. Sorry about that. It was the other way... writing CF to JS > vars. My bad! Doing too much as once. Robert Harrison Director of Interactive Services Austin & Williams Advertising I Branding I Digital I Direct   125 Kennedy D

Re: How do I pass this jQuery variable as arguments to a cfc method?

2014-01-15 Thread Matt Quackenbush
log > Twitter: http://www.twitter.com/austin_williams > > > -Original Message- > From: Rick Faircloth [mailto:r...@whitestonemedia.com] > Sent: Wednesday, January 15, 2014 3:57 PM > To: cf-talk > Subject: How do I pass this jQuery variable as arguments to a cfc method? > >

RE: How do I pass this jQuery variable as arguments to a cfc method?

2014-01-15 Thread Robert Harrison
blog Twitter: http://www.twitter.com/austin_williams -Original Message- From: Rick Faircloth [mailto:r...@whitestonemedia.com] Sent: Wednesday, January 15, 2014 3:57 PM To: cf-talk Subject: How do I pass this jQuery variable as arguments to a cfc method? Hi, all... I've approached

Re: How do I pass this jQuery variable as arguments to a cfc method?

2014-01-15 Thread Raymond Camden
ference to many, many websites, but I still can put together an answer. > > I have this HTML in a form: > > > > > >value="#special_title#" type="checkbox" name="special_title"> > > #special_title# > > >

How do I pass this jQuery variable as arguments to a cfc method?

2014-01-15 Thread Rick Faircloth
Hi, all... I've approached this problem from every direction I can think of and with reference to many, many websites, but I still can put together an answer. I have this HTML in a form: #special_title# Which is output into this: This jQuery processing the i

RE: Saving updated sort order in mysql jquery list to update database

2013-09-26 Thread David Phelan
If you want to build the array in jQuery then you can do something like the following: arIDs = new Array(); $("input[name='ID']").each(function(){ arIDs.push($(this).val()); }) David Phelan  Web Developer   IT Security & Web Technologies    

Re: Saving updated sort order in mysql jquery list to update database

2013-09-25 Thread .jonah
The callback called after you drop your sorted item should place an ajax call to your selected endpoint with a list of IDs in their new order. (I haven't used the jQuery UI sortables to know the details.) Then on the CF side just update the DB. A naive way might be like this: U

Saving updated sort order in mysql jquery list to update database

2013-09-25 Thread te...@it-werks.com te...@it-werks.com
I have a cfm page that displays a drag and drop ul list and I do not know how to create an array of that sorted list to the mysql database. Any help would be greatly appreciated. I am new to the jquery, jquery-ui plugins, but loving it all so far. Thanks in advance, Terry

Re: (ot) jQuery Select

2013-06-06 Thread Dakota Burns
5, 2013 12:31 PM, "Dakota Burns" > > wrote: > > > > > I am trying to use an HTML Select form component to select & go to a URL. > > I'm using the attached jQuery to accomplish this. The selection opens a > new > > window to the intended URL b

Re: (ot) what in a ajax page could block a jquery click listener?

2013-06-05 Thread Rick Faircloth
It could be anything from a simple spelling error, to a missing character, or any number of problems. You'll to show some code in order for anyone to be able to help. Rick On Wed, Jun 5, 2013 at 9:32 PM, morchella wrote: > > i am stuck. > cant show any code. but most of it is old. > tried to s

(ot) what in a ajax page could block a jquery click listener?

2013-06-05 Thread morchella
i am stuck. cant show any code. but most of it is old. tried to stick a simple move multi select box into an existing page that does all sort of ajax call i can figure out. the jq stuff work fine in most/90% of the site just this one page it is confusing me.. may have to re-write the form. sick

Re: (ot) jQuery Select

2013-06-05 Thread Dakota Burns
;Dakota Burns" wrote: > > > > > I am trying to use an HTML Select form component to select & go to a URL. > > I'm using the attached jQuery to accomplish this. The selection opens a > new > > window to the intended URL but the submit function doesn'

Re: (ot) jQuery Select

2013-06-05 Thread Matt Quackenbush
tion from the submit() and watch the magic take place. HTH Sent from a mobile something On Jun 5, 2013 12:31 PM, "Dakota Burns" wrote: > > I am trying to use an HTML Select form component to select & go to a URL. > I'm using the attached jQuery to accomplish this. The se

(ot) jQuery Select

2013-06-05 Thread Dakota Burns
I am trying to use an HTML Select form component to select & go to a URL. I'm using the attached jQuery to accomplish this. The selection opens a new window to the intended URL but the submit function doesn't post the hidden name/value pairs. I suspect my syntax is a bit in conf

jQuery appendTo in IE7/8

2013-03-19 Thread Chad Baloga
I have a function which moves a DIV from one window to the parent window. It works find in Firefox and Chrome but not in IE7/8 (seems like the appendTo fails). Any suggestions... function appendCmtDiv(div,no) { // ** Now we need to change the ID on the comment we are putting over and increment

Re: jquery forms

2013-02-14 Thread Carl Von Stetten
The jQuery Validation plugin is pretty awesome: http://bassistance.de/jquery-plugins/jquery-plugin-validation/ Also, that plugin is built into the ValidateThis framework: http://www.validatethis.org/ HTH, -Carl V. On 2/14/2013 8:00 AM, John M Bliss wrote: > Hi! Time-back-way-back, my favor

re: jquery forms

2013-02-14 Thread Jeff Garza
Check out the Validity plugin... you can change the applied styles and such as well. http://validity.thatscaptaintoyou.com/ -- Jeff Original Message > From: "John M Bliss" > Sent: Thursday, February 14, 2013 9:01 AM > To: "cf-talk" > Sub

jquery forms

2013-02-14 Thread John M Bliss
Hi! Time-back-way-back, my favorite way to do client-side form validation was Adobe Spry. It was super-easy to do color-coded alerts on empty required fields, email format validation, etc. Nowadays, I know that can all be done with roll-your-own JQuery but I'm wondering if you have a fav

Re: A little help with jquery/cfm

2013-02-12 Thread Bruce Sorge
Yeah, I had a brain fart. This fixed it: SELECT orgname, orglongname FROM organizations WHERE orgname = OR orglongname = #available# ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.c

Re: A little help with jquery/cfm

2013-02-12 Thread Brian Cain
Yes. You are checking on checkcode.cfm. That is the page that needs to be modified. Brian Cain On Feb 12, 2013, at 7:47 PM, Bruce Sorge wrote: > > The think is that the check is not done when they post, it's done when they > enter the code, then shift the focus form the form field. > >

Re: A little help with jquery/cfm

2013-02-12 Thread Bruce Sorge
The think is that the check is not done when they post, it's done when they enter the code, then shift the focus form the form field. Bruce On Feb 12, 2013, at 8:42 PM, Brian Cain wrote: > > You should move your check into the WHERE clause of the query (WHERE orgname > = '#orgname#' or org

Re: A little help with jquery/cfm

2013-02-12 Thread Brian Cain
, you could enter AS or Adaptive Sports. I > am not sure how to add this functionality into this code below as I did not > write the query, I found it on-line and modified it for my site. > > JQuery: > > > > pic1 = new Image(16, 16); > pic1.src = "images/lo

A little help with jquery/cfm

2013-02-12 Thread Bruce Sorge
d enter AS or Adaptive Sports. I am not sure how to add this functionality into this code below as I did not write the query, I found it on-line and modified it for my site. JQuery: pic1 = new Image(16, 16); pic1.src = "images/loader.gif"; $(document).ready(function(){ $("#

jquery hide() ...

2013-01-03 Thread Stephens, Larry V
on the page so when you show() it, things move around, and move back again when you hide() it. Apparently, jquery is just adding and removing this style with hide() and show(). visibility:hidden does make room on the page. That may or may not be stylistically good. You can't use hide() and sh

Re: SOT: jquery hide

2013-01-02 Thread Steve 'Cutter' Blades
Yes, and jQuery's show() and hide() methods use the 'display' property. Steve 'Cutter' Blades Adobe Community Professional Adobe Certified Expert Advanced Macromedia ColdFusion MX 7 Developer http://cutterscrossing.com Co-Author "Learning Ext JS 3.2" Packt Publishing 2010 https://w

Re: SOT: jquery hide

2013-01-02 Thread Larry Lyons
John, display:none means that the the tag in question will not appear on the page at all (although you can still interact with it through the dom). There will be no space allocated for it between the other tags. Visibility:hidden means that unlike display:none, the tag is not visible, but sp

RE: SOT: jquery hide

2012-12-17 Thread Stephens, Larry V
FWIW: If you use style=display:none as a part of your tag then you can't see it in design view in DreamWeaver (at least I couldn't). I used a CSS setting to hide it (display:none) and didn't have to remove the class when I used show() - worked just fine. ~~~

Re: jquery hide

2012-12-17 Thread Marty Franklin
012 7:47 AM, Stephens, Larry V wrote: > I haven't tried it, yet, but look at http://tinyurl.com/ntjugd > > > -Original Message- > From: John M Bliss [mailto:bliss.j...@gmail.com] > Sent: Sunday, December 16, 2012 2:09 PM > To: cf-talk > Subject: SOT: jquery

RE: jquery hide

2012-12-17 Thread Stephens, Larry V
I haven't tried it, yet, but look at http://tinyurl.com/ntjugd -Original Message- From: John M Bliss [mailto:bliss.j...@gmail.com] Sent: Sunday, December 16, 2012 2:09 PM To: cf-talk Subject: SOT: jquery hide Hi! I'm using jquery to show/hide div containing primary nav. T

Re: SOT: jquery hide

2012-12-16 Thread Steve Milburn
I think you are right. I seem to recall being able to set display:none on an element and then just call .show() when needed. This would negate the need of calling .hide() in the document.ready() function. On Sunday, December 16, 2012, Scott Weikert wrote: > > I believe the jquery show(

Re: SOT: jquery hide

2012-12-16 Thread Andrew Scott
i! I'm using jquery to show/hide div containing primary nav. The problem > is that, on "heavier" pages, the code below does not perform the initial, > "ready" hide fast enough so you can see the nav flash on before it's > hidden. What's the best way to a

Re: SOT: jquery hide

2012-12-16 Thread Bryan Stevenson
lity: hidden; > } > > > > $(document).ready(function () { > $( "#mymenu" ).hide(); > $( "#mymenu" ).css("visibility", "visible"); > }); > > > > > On Sun, Dec 16, 2012 at 1:09 PM, John M Bliss wrote: > > > Hi! I

Re: SOT: jquery hide

2012-12-16 Thread Scott Weikert
I believe the jquery show()/hide() functions use the display attribute and not the visibility attribute. Not long ago I switched over from using Prototype to jQuery and had to recode hidden divs to use those jQuery functions. On 12/16/12 12:38 PM, Steve Milburn wrote: > My personal prefere

Re: SOT: jquery hide

2012-12-16 Thread Steve Milburn
My personal preference would be to use the display CSS attribute instead of visibility. Also, I would include that setting in a different class that I will not need after the page loads, say "myHiddenDiv". Finally, utilize jQuery chaining so you don't have to scan the DOM twice

Re: SOT: jquery hide

2012-12-16 Thread John M Bliss
This seems to work but looks clunky to me. Better solution(s)? .mymenuclass { visibility: hidden; } $(document).ready(function () { $( "#mymenu" ).hide(); $( "#mymenu" ).css("visibility", "visible"); }); On Sun, Dec 16, 2012 at 1:09 PM, John

Re: SOT: jquery hide

2012-12-16 Thread Steve Milburn
Try giving your div a class that includes display=none. This will prevent it from being displayed while the page is initially rendered. You can then remove that class in your document.ready() function. HTH Steve On Sunday, December 16, 2012, John M Bliss wrote: > > Hi! I'm using jqu

SOT: jquery hide

2012-12-16 Thread John M Bliss
Hi! I'm using jquery to show/hide div containing primary nav. The problem is that, on "heavier" pages, the code below does not perform the initial, "ready" hide fast enough so you can see the nav flash on before it's hidden. What's the best way to address t

here's one for the jQuery experts

2012-11-16 Thread Scott Stewart
This is all using jQueryUI so here goes... I have an accordion inside of a tab, $("#adminNav").tabs({ load: function(event,ui){ $("#nodesMenu").accordion({ collapsible: true, heightStyle: "fill",

Re: 3 or 5 selects related? cf7 - jquery?

2012-07-02 Thread Raymond Camden
On Mon, Jul 2, 2012 at 8:21 AM, morchella wrote: > > ok i am not getting it. this is what i have > the cfc that uses JSONUtil to initialize results, but dont htink i am > passing them back? > > (I changed my mind while I wrote this, so please read it all.) Remember though - when you call a

Re: 3 or 5 selects related? cf7 - jquery?

2012-07-02 Thread morchella
etect when initial DD changes $("#business_unit").change(function() { //get what they selected var selected = $("option:selected",this).val(); //no matter what, clear the other DD //Tip taken from: http://stackoverflow.com/questions/47824/using

Re: 3 or 5 selects related? cf7 - jquery?

2012-07-01 Thread morchella
so use something like this to return my query to the cfc called in your example. http://jsonutil.riaforge.org/ was told i would be on cf 10. ha! ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusio

Re: 3 or 5 selects related? cf7 - jquery?

2012-06-30 Thread morchella
a JSON result from the > data. > > On Sat, Jun 30, 2012 at 10:22 AM, morchella > wrote: > > > > Hey Guys. > > I need to be able to have 2,3 or 5 selects related. > > CF server 7, latest jquery lib. > > > > I have looked at the relevant examples i could

Re: 3 or 5 selects related? cf7 - jquery?

2012-06-30 Thread Raymond Camden
JSON result from the data. On Sat, Jun 30, 2012 at 10:22 AM, morchella wrote: > > Hey Guys. > I need to be able to have 2,3 or 5 selects related. > CF server 7, latest jquery lib. > > I have looked at the relevant examples i could find. but not sure how to > make them w

3 or 5 selects related? cf7 - jquery?

2012-06-30 Thread morchella
Hey Guys. I need to be able to have 2,3 or 5 selects related. CF server 7, latest jquery lib. I have looked at the relevant examples i could find. but not sure how to make them work with standard cfc functions/query's http://www.raymondcamden.com/index.cfm/2011/5/5/Related-selects-in-jQuer

Re: saving jquery sort order for set method in CFC

2012-06-21 Thread Teed Younger
FC code and see how it >gets it. When jQuery does a serialize on form fields, it can create a >structure of data that doesn't always mesh well with CF. SO for >example, and I'm going by memory here so take this with a grain of >salt, it may pass fields like so: > >

Re: saving jquery sort order for set method in CFC

2012-06-21 Thread Raymond Camden
s it. When jQuery does a serialize on form fields, it can create a structure of data that doesn't always mesh well with CF. SO for example, and I'm going by memory here so take this with a grain of salt, it may pass fields like so: name[1]=ray&name[2]=jay While that works fine in PHP,

saving jquery sort order for set method in CFC

2012-06-21 Thread Teed Younger
Sorry if this is the wrong place, but given than Im using CFC's to create database gets and sets, and have no luck in any js/jquery forums because most of them dont understand CF, I thought I'd post here. I have a sortable/drag and drop list(s). Meaning I can sort both list orders

Coldfusion and JQuery Toxeninput

2012-05-30 Thread Maureen
Are any of you using the jQuery Toxeninput plugin with Coldfusion, and if so do you have any code you could share on passing the JSON back and forth? I've read the instructions till my eyes are blurred with no success. ~|

RE: JQuery .ajax() call posts back to invoking page only on Production

2012-02-22 Thread UXB
>> another thing i would check is to make sure your codebase is exactly the same Especially the Jquery code base. I have had numerous problems in that regard as well. Dennis Powers UXB Internet - A website Design and Hosting Company P.O. Box 6028, Wolcott, CT 06716 - T:203-879-2844 W

Re: JQuery .ajax() call posts back to invoking page only on Production

2012-02-22 Thread Azadi Saryev
sing ajax. > > I haven't a clue why this behavior is server-specific nor if the area of > research is Cold Fusion or the CF Admin settings or something else related to > JQuery.  I have debugging IPs turned off on both environments.  Why does an > ajax post turn into a get

Re: JQuery .ajax() call posts back to invoking page only on Production

2012-02-22 Thread Cameron Childress
On Wed, Feb 22, 2012 at 8:12 AM, Brent Shaub wrote: > Hi Cameron, I tried that based on your suggestion and didn't see any > indication of back/forth communication. I liked how Chrome groups js and > css activities together so I can see where to spend some time cleaning > things up. I apprecia

Re: JQuery .ajax() call posts back to invoking page only on Production

2012-02-22 Thread Brent Shaub
>For these sorts of this, I usually will turn on the Developer Tools panel >in Chrome and watch the back/forth communication int he browser via the >"network" tab. you can then click on any request's headers, response, etc. > >-Cameron > Hi Cameron, I tried that based on your suggestion and didn'

Re: JQuery .ajax() call posts back to invoking page only on Production

2012-02-21 Thread Cameron Childress
assed > into the CFC as querystring parameters. This page refresh is mucking up > the purpose of using ajax. > > I haven't a clue why this behavior is server-specific nor if the area of > research is Cold Fusion or the CF Admin settings or something else related > to JQuery. I

JQuery .ajax() call posts back to invoking page only on Production

2012-02-21 Thread Brent Shaub
ge refresh is mucking up the purpose of using ajax. I haven't a clue why this behavior is server-specific nor if the area of research is Cold Fusion or the CF Admin settings or something else related to JQuery. I have debugging IPs turned off on both environments. Why does an ajax post

Copy of Recent Revision of jQuery Cookie Plugin?

2011-12-08 Thread Matt Quackenbush
Interesting. I need a copy of jQuery's cookie plugin, but they've taken the plugins portion of the site down (http://plugins.jquery.com/project/Cookie). Does anyone by chance have a recent copy that you can send me off-list? Thanks! ~~

Re: jQuery Font Resize

2011-09-27 Thread Gerald Guido
efined in pixels. On Tue, Sep 27, 2011 at 3:09 PM, Michael Grant wrote: > > I don't think you can attach files to HOF emails. You'll have to just paste > the css in the body of your message. > > > On Tue, Sep 27, 2011 at 2:37 PM, Torrent Girl > wrote: > &

Re: jQuery Font Resize

2011-09-27 Thread Michael Grant
I don't think you can attach files to HOF emails. You'll have to just paste the css in the body of your message. On Tue, Sep 27, 2011 at 2:37 PM, Torrent Girl wrote: > > Hello > > I am trying to implement this jquery and it only works when I remove the > attached

jQuery Font Resize

2011-09-27 Thread Torrent Girl
Hello I am trying to implement this jquery and it only works when I remove the attached CSS. Any suggestions? http://www.shopdev.co.uk/blog/font-resize.html ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com

Re: Code from cfhtmlhead showing up in jQuery AJAX JSON data

2011-09-24 Thread Lists
.. > > Rick > > -Original Message- > From: Steve 'Cutter' Blades [mailto:cold.fus...@cutterscrossing.com] > Sent: Saturday, September 24, 2011 8:41 AM > To: cf-talk > Subject: Re: Code from cfhtmlhead showing up in jQuery AJAX JSON data > > > Yo

RE: Code from cfhtmlhead showing up in jQuery AJAX JSON data

2011-09-24 Thread Rick Faircloth
8:41 AM To: cf-talk Subject: Re: Code from cfhtmlhead showing up in jQuery AJAX JSON data You wouldn't put it in onApplicationStart, but onRequest (cf9+). onRequest is only triggered on cfm requests, whereas a cfc would trigger onCFCRequest. (I am assuming your Ajax requests are going to a CFC

Re: Code from cfhtmlhead showing up in jQuery AJAX JSON data

2011-09-24 Thread Steve 'Cutter' Blades
luded at the page level, would be better and give greater flexibility) var siteDetail = #SerializeJSON(application.siteDetail)#; Then, in your JS, access the vars from the JS obj ... // some JQuery Ajax call data object data: $.extend(true,{},siteDetail,{someArg:1,someArg2:'myArg&#x

Re: Code from cfhtmlhead showing up in jQuery AJAX JSON data

2011-09-24 Thread Russ Michaels
; Sent: Saturday, September 24, 2011 8:00 AM > To: cf-talk > Subject: Re: Code from cfhtmlhead showing up in jQuery AJAX JSON data > > > it is only happening onApplicationstart or is it being inserted into > every request ? > > Russ > > On Sat, Sep 24, 2011 at 12:31 PM, Rick

RE: Code from cfhtmlhead showing up in jQuery AJAX JSON data

2011-09-24 Thread Rick Faircloth
ot;request" for data? -Original Message- From: Russ Michaels [mailto:r...@michaels.me.uk] Sent: Saturday, September 24, 2011 8:00 AM To: cf-talk Subject: Re: Code from cfhtmlhead showing up in jQuery AJAX JSON data it is only happening onApplicationstart or is it being inserted into every reques

Re: Code from cfhtmlhead showing up in jQuery AJAX JSON data

2011-09-24 Thread Russ Michaels
       var js_website              =   '#js_website#'; >        var js_site_manager_dsn     =   '#js_site_manager_dsn#'; >        var js_client_dsn           =   '#js_client_dsn#'; > >     > > > > However, I just coded a page to load its content via jQuery AJ

Code from cfhtmlhead showing up in jQuery AJAX JSON data

2011-09-24 Thread Rick Faircloth
js_sitename = '#js_siteName#'; var js_website = '#js_website#'; var js_site_manager_dsn = '#js_site_manager_dsn#'; var js_client_dsn = '#js_client_dsn#'; However, I just coded a page t

RE: CFFORM or Jquery Form Validation

2011-08-30 Thread Al Musella, DPM
gt;My old school method. I too am not great with javascript or jquery, but am >starting to try getting into it >So I don't get left completely behind. >I have no use for frameworks at this time so the method you provided is just >perfect and I can get me old head around it. > >

RE: CFFORM or Jquery Form Validation

2011-08-29 Thread Terry Troxel
Al, Now that's what I call perfection. Thank you very much and I am not going to copy your code as I already finished Sunday My old school method. I too am not great with javascript or jquery, but am starting to try getting into it So I don't get left completely behind. I have

RE: CFFORM or Jquery Form Validation

2011-08-29 Thread Al Musella, DPM
t with javascript or jquery but it works:) I stripped out everything unneeded. You can also easily do it without jquery just using javascript... but the jquery syntax is easier to remember. Al At 11:10 PM 8/28/2011, you wrote: >Cameron, >I did as you said and downloaded the framework. >I

Re: CFFORM or Jquery Form Validation

2011-08-29 Thread Cameron Childress
On Sun, Aug 28, 2011 at 11:10 PM, Terry Troxel wrote: > Are, but I did learn something today. I am a 70 year old guy who loves all > this stuff > That's pretty cool actually. You get a pass. :) Glad you got things working. -Cameron -- Cameron Childress -- p: 678.637.5072 im: cameroncf fa

RE: CFFORM or Jquery Form Validation

2011-08-28 Thread Terry Troxel
nt: Sunday, August 28, 2011 2:51 PM To: cf-talk Subject: Re: CFFORM or Jquery Form Validation There are many many examples available for ValidateThis. You'd asked for more than one. The download contains a whole bunch. If you meant what you said when you claimed you "want learn som

Re: CFFORM or Jquery Form Validation

2011-08-28 Thread Cameron Childress
On Sun, Aug 28, 2011 at 5:03 PM, Terry Troxel wrote: > > I went to their demo and tried out the list box, but it only allows ONE > selection. > There are many many examples available for ValidateThis. You'd asked for more than one. The download contains a whole bunch. If you meant what you said

Re: CFFORM or Jquery Form Validation

2011-08-28 Thread Maureen
http://stackoverflow.com/questions/1300994/jquery-validate-require-at-least-one-field-in-a-group-to-be-filled On Sun, Aug 28, 2011 at 10:19 AM, Terry Troxel wrote: > >  I have 3 form fields: Phone1, phone2, email. > > Can someone point me to or give me an example how to: > I have

Re: CFFORM or Jquery Form Validation

2011-08-28 Thread Terry Troxel
> > > > I would like to know how to accomplish this using JQUERY, CF AJAX or > > CFFORM, so I can learn something new today. > > > > I would like to see as many examples as I can if possible. > > > > Check out ValidateThis: > > http://www.validatethis.

Re: CFFORM or Jquery Form Validation

2011-08-28 Thread Cameron Childress
On Sun, Aug 28, 2011 at 1:19 PM, Terry Troxel wrote: > > I would like to know how to accomplish this using JQUERY, CF AJAX or > CFFORM, so I can learn something new today. > > I would like to see as many examples as I can if possible. > Check out ValidateThis: http://ww

CFFORM or Jquery Form Validation

2011-08-28 Thread Terry Troxel
I have 3 form fields: Phone1, phone2, email. Can someone point me to or give me an example how to: I have always used an cfif statement to validate that at least ONE contact method is provided. This is so old school, but it works. I would like to know how to accomplish this using JQUERY, CF

Re: AJAXCFC/jQuery/JSON and percent signs

2011-07-06 Thread Bryan Stevenson
and a little more digging makes me think the issue lies in the JSON.CFC (specifically the "decode" function) that comes with AJAXCFC. That is full of RegEx which is not my forte I'm hoping someonie else has dealt with this and perhaps there is an updated fixed version of that "decode" functi

Re: AJAXCFC/jQuery/JSON and percent signs

2011-07-06 Thread Bryan Stevenson
Scratch that! The value to be inserted is showing up at the method in my CFC that does the INSERT missing the "h". It is being serialized fine and FireBug confirms that. So it would appear that it may be the decoding of the JSON string that is the issueand I have no idea how to fix or deal

  1   2   3   4   5   6   7   8   >