Re: [jQuery] This code is too complex for a noob, can someone break this down.

2010-01-25 Thread Bugman1400
Nathan Klatt-2 wrote: > > On Mon, Jan 25, 2010 at 5:19 PM, Bugman1400 > wrote: >> I still get the Error "$ is not defined" in the console. What could that >> be from? > > That means jQuery isn't being properly included. > > Nathan > > Nevermind.I just figured it out. I had when it

Re: [jQuery] This code is too complex for a noob, can someone break this down.

2010-01-25 Thread Bugman1400
Thankscan you give a little further guidance as to the proper way to include jQuery? Nathan Klatt-2 wrote: > > On Mon, Jan 25, 2010 at 5:19 PM, Bugman1400 > wrote: >> I still get the Error "$ is not defined" in the console. What could that >> be from? > > That means jQuery isn't being pro

Re: [jQuery] This code is too complex for a noob, can someone break this down.

2010-01-25 Thread Nathan Klatt
On Mon, Jan 25, 2010 at 5:19 PM, Bugman1400 wrote: > I still get the Error "$ is not defined" in the console. What could that be > from? That means jQuery isn't being properly included. Nathan

Re: [jQuery] This code is too complex for a noob, can someone break this down.

2010-01-25 Thread Nathan Klatt
On Sun, Jan 24, 2010 at 9:01 PM, Bugman1400 wrote: > What is the best way to check the JS console? I am currently using MS FP. > Should I switch to something like FireFox? If you don't want to switch environments, IE has a devloper toolbar: http://en.wikipedia.org/wiki/Internet_Explorer_Develope

Re: [jQuery] This code is too complex for a noob, can someone break this down.

2010-01-24 Thread Bugman1400
Nathan Klatt-2 wrote: > > On Sun, Jan 24, 2010 at 12:42 PM, Bugman1400 > wrote: >> a href="javascript:void(0);" onclick='$.get("dotest.php",{ cmd: >> "approve", >> id: "57" } ,function(data){ alert('What the Heck'); });'> Approve /a >> ... >> How come I get no response? Is there a further way

Re: [jQuery] This code is too complex for a noob, can someone break this down.

2010-01-24 Thread Nathan Klatt
On Sun, Jan 24, 2010 at 12:42 PM, Bugman1400 wrote: > a href="javascript:void(0);" onclick='$.get("dotest.php",{ cmd: "approve", > id: "57" } ,function(data){ alert('What the Heck'); });'> Approve /a > ... > How come I get no response? Is there a further way to debug? I've heard that > Ajax errors

Re: [jQuery] This code is too complex for a noob, can someone break this down.

2010-01-24 Thread Bugman1400
To further understand the $.get() and its return data, I've simplified the code to this: a href="javascript:void(0);" onclick='$.get("dotest.php",{ cmd: "approve", id: "57" } ,function(data){ alert('What the Heck'); });'> Approve /a And dotest.php is as follows: How come I get no response? I

Re: [jQuery] This code is too complex for a noob, can someone break this down.

2010-01-23 Thread Amos King
submits a row to the server and then updates the content of the approve row to what is returned from the server. On Sat, Jan 23, 2010 at 9:06 AM, Bugman1400 wrote: > > href="javascript:void(0);" onclick='$.get("do.php",{ cmd: "approve", id: > " echo $rrows['id']; ?>" } ,function(data){ $("#approv

Re: [jQuery] This code is too complex for a noob, can someone break this down.

2010-01-23 Thread Bugman1400
href="javascript:void(0);" onclick='$.get("do.php",{ cmd: "approve", id: "" } ,function(data){ $("#approve").html(data); });' ?>" });'>Approve -- View this message in context: http://old.nabble.com/This-code-is-too-complex-for-a-noob%2C-can-someone-break-this-down.-tp2728s27240p27286206.html

Re: [jQuery] This code is too complex for a noob, can someone break this down.

2010-01-22 Thread Nathan Klatt
On Fri, Jan 22, 2010 at 6:57 PM, Bugman1400 wrote: > javascript:void(0); " } ,function(data){ $("#approve ?>").html(data); });' ?>" });'>Approve > > The do.php is a query that updates a database and sets an Approve column to > '1'. More context plz, that fragment makes no sense.

[jQuery] This code is too complex for a noob, can someone break this down.

2010-01-22 Thread Bugman1400
I'm fairly good at VB and know how to call a function and what a GET statement is, but I'm having trouble with the following. Can someone break it down? javascript:void(0); " } ,function(data){ $("#approve").html(data); });' ?>" });'>Approve The do.php is a query that updates a database and set