Re: [jQuery] Simplae JQuery/Ajax question - GET variables

2010-01-19 Thread Nathan Klatt
On Tue, Jan 19, 2010 at 11:06 AM, parot russ...@parotkefalonia.com wrote:
 What I cannot do and I do not seem to get a sensible, easy to follow and
 understandable answer from knowledgeable JQuery people is find out how to
 pass the valiable trythis to the page tryit.php and then return the result,
 in this case a simple php echo.

I must misunderstand you...

var trythis = 57;
$.get(tryit.php, { trythis: trythis }, function(data) {
$(#resultsGoHere).html(data); });

Nathan


Re: [jQuery] Simplae JQuery/Ajax question - GET variables

2010-01-19 Thread parot

Thnks Nathan, 

Very near, but it is more basic than that - how do I get the variable
?trythis=changable value into var trythis=;

Sounds silly and quiet simpel, but can I get a plain english answer - no

Thanks for your reply


Nathan Klatt-2 wrote:
 
 On Tue, Jan 19, 2010 at 11:06 AM, parot russ...@parotkefalonia.com
 wrote:
 What I cannot do and I do not seem to get a sensible, easy to follow and
 understandable answer from knowledgeable JQuery people is find out how to
 pass the valiable trythis to the page tryit.php and then return the
 result,
 in this case a simple php echo.
 
 I must misunderstand you...
 
 var trythis = 57;
 $.get(tryit.php, { trythis: trythis }, function(data) {
 $(#resultsGoHere).html(data); });
 
 Nathan
 
 

-- 
View this message in context: 
http://old.nabble.com/Simplae-JQuery-Ajax-question---GET-variables-tp27229104s27240p27229508.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.



Re: [jQuery] Simplae JQuery/Ajax question - GET variables

2010-01-19 Thread Nathan Klatt
On Tue, Jan 19, 2010 at 11:32 AM, parot russ...@parotkefalonia.com wrote:
 Very near, but it is more basic than that - how do I get the variable
 ?trythis=changable value into var trythis=;

Maybe a sequence diagram would be helpful. Here's what I hear you asking:

http://www.websequencediagrams.com/?lz=bm90ZSBsZWZ0IG9mIHdlYnBhZ2U6IG1lIGZpcnN0IQpKYXZhc2NyaXB0LT50cnlpdC5waHA6IHRyeXRoaXMgPSA1NwoAPwVyaWdoAEAFABsLU2ltcGxlIGVjaG8gb2YgdmFyaWFibGUANggKAEgJLS0-AF8KOiA1NwBrDQCBDgkACQ8AexUic29tZXRoaW5nIGVsc2UiAExSAFERAIEXFQB3EQs=default

Could you modify that to better explain what you mean, maybe?

Nathan


Re: [jQuery] Simplae JQuery/Ajax question - GET variables

2010-01-19 Thread parot

Hi Nathan 

http://www.websequencediagrams.com - now I'm really confused I think I
understand it but but let me explain

I want to scroll back and forward through the months on a calendar without
refreshing the page. I have the php calendar, but I don't want any page
refresh which I can do with PHP and just send the GET to the page.  so
ideally what I need is 2 links back and forward with the month variable i.e.
1-12 (Jan - Dec) passed to JQury/Ajax. I have been looking at a number of
scripts, but all to far complex (i.e. do more than I need) just I cant
fathom out how to pass Back (Jan go to Dec) or Forward (Jan go to Feb) and
so on. just need 1 month at a time, nothing fancy etc.



Nathan Klatt-2 wrote:
 
 On Tue, Jan 19, 2010 at 11:32 AM, parot russ...@parotkefalonia.com
 wrote:
 Very near, but it is more basic than that - how do I get the variable
 ?trythis=changable value into var trythis=;
 
 Maybe a sequence diagram would be helpful. Here's what I hear you asking:
 
 http://www.websequencediagrams.com/?lz=bm90ZSBsZWZ0IG9mIHdlYnBhZ2U6IG1lIGZpcnN0IQpKYXZhc2NyaXB0LT50cnlpdC5waHA6IHRyeXRoaXMgPSA1NwoAPwVyaWdoAEAFABsLU2ltcGxlIGVjaG8gb2YgdmFyaWFibGUANggKAEgJLS0-AF8KOiA1NwBrDQCBDgkACQ8AexUic29tZXRoaW5nIGVsc2UiAExSAFERAIEXFQB3EQs=default
 
 Could you modify that to better explain what you mean, maybe?
 
 Nathan
 
 

-- 
View this message in context: 
http://old.nabble.com/Simplae-JQuery-Ajax-question---GET-variables-tp27229104s27240p27231466.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.



Re: [jQuery] Simplae JQuery/Ajax question - GET variables

2010-01-19 Thread Nathan Klatt
On Tue, Jan 19, 2010 at 1:45 PM, parot russ...@parotkefalonia.com wrote:
 I want to scroll back and forward through the months on a calendar without
 refreshing the page. I have the php calendar, but I don't want any page
 refresh which I can do with PHP and just send the GET to the page.  so
 ideally what I need is 2 links back and forward with the month variable i.e.
 1-12 (Jan - Dec) passed to JQury/Ajax. I have been looking at a number of
 scripts, but all to far complex (i.e. do more than I need) just I cant
 fathom out how to pass Back (Jan go to Dec) or Forward (Jan go to Feb) and
 so on. just need 1 month at a time, nothing fancy etc.

How's about something like this?

button id=prevMonthPrevious month/button
div id=calendar/div
button id=nextMonthNext month/button

script type=text/javascript
var currentMonth = 1;
function loadMonth(newMonth) {
   $(#calendar).load(getCalendar.php?m=+newMonth);
}
$().ready(function() {
   loadMonth(currentMonth);
   $(button#prevMonth).click(function() { loadMonth(--currentMonth); });
   $(button#nextMonth).click(function() { loadMonth(++currentMonth); });
});
/script


Re: [jQuery] Simplae JQuery/Ajax question - GET variables

2010-01-19 Thread parot

Nathan, what can I say, perfect. Thanks a lot.  Think I understand it, Do
years automatically increment / decrease with +newYear -newYear like months
so you could have something like

$(button#prevMonth).click(function() {
loadMonth(--currentMonth),loadYear(--currentYear); });


Nathan Klatt-2 wrote:
 
 On Tue, Jan 19, 2010 at 1:45 PM, parot russ...@parotkefalonia.com wrote:
 I want to scroll back and forward through the months on a calendar
 without
 refreshing the page. I have the php calendar, but I don't want any page
 refresh which I can do with PHP and just send the GET to the page.  so
 ideally what I need is 2 links back and forward with the month variable
 i.e.
 1-12 (Jan - Dec) passed to JQury/Ajax. I have been looking at a number of
 scripts, but all to far complex (i.e. do more than I need) just I cant
 fathom out how to pass Back (Jan go to Dec) or Forward (Jan go to Feb)
 and
 so on. just need 1 month at a time, nothing fancy etc.
 
 How's about something like this?
 
 button id=prevMonthPrevious month/button
 div id=calendar/div
 button id=nextMonthNext month/button
 
 script type=text/javascript
 var currentMonth = 1;
 function loadMonth(newMonth) {
$(#calendar).load(getCalendar.php?m=+newMonth);
 }
 $().ready(function() {
loadMonth(currentMonth);
$(button#prevMonth).click(function() { loadMonth(--currentMonth); });
$(button#nextMonth).click(function() { loadMonth(++currentMonth); });
 });
 /script
 
 

-- 
View this message in context: 
http://old.nabble.com/Simplae-JQuery-Ajax-question---GET-variables-tp27229104s27240p27232199.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.



Re: [jQuery] Simplae JQuery/Ajax question - GET variables

2010-01-19 Thread Nathan Klatt
On Tue, Jan 19, 2010 at 2:29 PM, parot russ...@parotkefalonia.com wrote:
 so you could have something like

 $(button#prevMonth).click(function() {
 loadMonth(--currentMonth),loadYear(--currentYear); });

Well, to handle year and month you'll want something like:

var currentMonth = 1;
var currentYear = 2010;
function deltaMonth(delta) {
   currentMonth += delta;
   while (currentMonth  1) {
  --currentYear;
  currentMonth += 12;
   }
   while (currentMonth  12) {
  ++currentYear;
  currentMonth -= 12;
   }
}


Re: [jQuery] Simplae JQuery/Ajax question - GET variables

2010-01-19 Thread parot

Natahn,

Very very nearly there - just ummm not sure where to put the Year code. 
Other than that works perfectly in the calander I want which has a show /
hide function for a form with an ajax reply - I got tha bit working
perfectly, it was just using JQuery to prefect a page refresh on the month
change.  That now happensd thanks, just - sorry to be a pain, where do I put
thae year function.  Thanks a real lot.



parot wrote:
 
 Nathan, what can I say, perfect. Thanks a lot.  Think I understand it, Do
 years automatically increment / decrease with +newYear -newYear like
 months so you could have something like
 
 $(button#prevMonth).click(function() {
 loadMonth(--currentMonth),loadYear(--currentYear); });
 
 
 Nathan Klatt-2 wrote:
 
 On Tue, Jan 19, 2010 at 1:45 PM, parot russ...@parotkefalonia.com
 wrote:
 I want to scroll back and forward through the months on a calendar
 without
 refreshing the page. I have the php calendar, but I don't want any page
 refresh which I can do with PHP and just send the GET to the page.  so
 ideally what I need is 2 links back and forward with the month variable
 i.e.
 1-12 (Jan - Dec) passed to JQury/Ajax. I have been looking at a number
 of
 scripts, but all to far complex (i.e. do more than I need) just I cant
 fathom out how to pass Back (Jan go to Dec) or Forward (Jan go to Feb)
 and
 so on. just need 1 month at a time, nothing fancy etc.
 
 How's about something like this?
 
 button id=prevMonthPrevious month/button
 div id=calendar/div
 button id=nextMonthNext month/button
 
 script type=text/javascript
 var currentMonth = 1;
 function loadMonth(newMonth) {
$(#calendar).load(getCalendar.php?m=+newMonth);
 }
 $().ready(function() {
loadMonth(currentMonth);
$(button#prevMonth).click(function() { loadMonth(--currentMonth);
 });
$(button#nextMonth).click(function() { loadMonth(++currentMonth);
 });
 });
 /script
 
 
 
 

-- 
View this message in context: 
http://old.nabble.com/Simplae-JQuery-Ajax-question---GET-variables-tp27229104s27240p27232554.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.



Re: [jQuery] Simplae JQuery/Ajax question - GET variables

2010-01-19 Thread parot

Hi Nathan

Thanks a lot for everything, managed to sort the years out OK not in the
java but in the PHP page - I'm just an old fashioned PHP type of guy really.

Thanks alot for everything



parot wrote:
 
 Natahn,
 
 Very very nearly there - just ummm not sure where to put the Year code. 
 Other than that works perfectly in the calander I want which has a show /
 hide function for a form with an ajax reply - I got tha bit working
 perfectly, it was just using JQuery to prefect a page refresh on the month
 change.  That now happensd thanks, just - sorry to be a pain, where do I
 put thae year function.  Thanks a real lot.
 
 
 
 parot wrote:
 
 Nathan, what can I say, perfect. Thanks a lot.  Think I understand it, Do
 years automatically increment / decrease with +newYear -newYear like
 months so you could have something like
 
 $(button#prevMonth).click(function() {
 loadMonth(--currentMonth),loadYear(--currentYear); });
 
 
 Nathan Klatt-2 wrote:
 
 On Tue, Jan 19, 2010 at 1:45 PM, parot russ...@parotkefalonia.com
 wrote:
 I want to scroll back and forward through the months on a calendar
 without
 refreshing the page. I have the php calendar, but I don't want any page
 refresh which I can do with PHP and just send the GET to the page.  so
 ideally what I need is 2 links back and forward with the month variable
 i.e.
 1-12 (Jan - Dec) passed to JQury/Ajax. I have been looking at a number
 of
 scripts, but all to far complex (i.e. do more than I need) just I cant
 fathom out how to pass Back (Jan go to Dec) or Forward (Jan go to Feb)
 and
 so on. just need 1 month at a time, nothing fancy etc.
 
 How's about something like this?
 
 button id=prevMonthPrevious month/button
 div id=calendar/div
 button id=nextMonthNext month/button
 
 script type=text/javascript
 var currentMonth = 1;
 function loadMonth(newMonth) {
$(#calendar).load(getCalendar.php?m=+newMonth);
 }
 $().ready(function() {
loadMonth(currentMonth);
$(button#prevMonth).click(function() { loadMonth(--currentMonth);
 });
$(button#nextMonth).click(function() { loadMonth(++currentMonth);
 });
 });
 /script
 
 
 
 
 
 

-- 
View this message in context: 
http://old.nabble.com/Simplae-JQuery-Ajax-question---GET-variables-tp27229104s27240p27233076.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.