[jQuery] Events Calendar

2009-10-22 Thread Andri
Hi, I needed events calendar for my site. This calendar should : 1. highlight date that had events 2. If i click it, it'll go to events page or show alert about what events that occur that date. I try to use datepicker to do this. For #2 i can do it using onSelect (dateText). But i can't figure

[jQuery] Re: how to Passing Data jQuery UI Dialog?

2009-05-29 Thread Andri
Thanx pal, its work

[jQuery] how to Passing Data jQuery UI Dialog?

2009-05-28 Thread Andri
I'm put an image, which when it clicks it will delete some data on the database On above example, when user click it will delete data with id = 13 on database. This is the function function removeEdu(id) { $('#dialog').dialog('open'); return false; } And thi

[jQuery] Re: simple function not working on IE

2009-03-13 Thread Andri
Error Solve, there were some problem on validation script. FF ignore it, but IE will not work because this :D On 13 Mar, 15:10, Andri <4r53...@gmail.com> wrote: > anybody have the solution? > > On Mar 13, 5:41 am, Andri <4r53...@gmail.com> wrote: > > > thanks, I&#x

[jQuery] Re: simple function not working on IE

2009-03-13 Thread Andri
anybody have the solution? On Mar 13, 5:41 am, Andri <4r53...@gmail.com> wrote: > thanks, I'll fix it. > > But before that, the function navigation also doesnt work, even it > just simple hide() and show() > > On Mar 13, 12:13 am, Karl Swedberg wrote: > >

[jQuery] Re: simple function not working on IE

2009-03-12 Thread Andri
value for the display property. > > --Karl > > > Karl Swedbergwww.englishrules.comwww.learningjquery.com > > On Mar 12, 2009, at 11:43 AM, Andri wrote: > > > > > Look at this :http://andriel.info/checkout/checkout2.html > > > When I click cont

[jQuery] simple function not working on IE

2009-03-12 Thread Andri
Look at this : http://andriel.info/checkout/checkout2.html When I click continue button (on the left side). It has to open a div under the billing information. But on IE it doesnt work, FF is fine. This is the script function navigation(id) { id2 = id - 1;

[jQuery] Re: Combining jQuery validation, ajax Submit and jqUploader

2009-02-23 Thread Andri
what i found on jquery.documentation, > > > "Serialize requires that fields have a name attribute. Having only an > > id will not work." > > > On Feb 23, 8:10 am, Andri <4r53...@gmail.com> wrote: > > > > I have a form, and i want to combing jquery

[jQuery] Combining jQuery validation, ajax Submit and jqUploader

2009-02-22 Thread Andri
I have a form, and i want to combing jquery validation ajax Submit and jquploader. This is the script $("#RegForm").validate({ submitHandler: function(form) { jQuery(form).ajaxSubmit({ var str = $("#RegForm").serialize();

[jQuery] Customize datepicker date range

2008-07-15 Thread Andri
how i can custom the dateRange (default are 10 years before/ after the date). I use this function $('.dateRange').attachDatepicker({beforeShow: customRange}); function customRange(input) { return {minDate: ('1990'), maxDate: ('2040')}; } but it doesnt work

[jQuery] Re: changing value of hidden input

2008-06-11 Thread Andri
t;[EMAIL PROTECTED]> wrote: > Changing the value of a hidden input like this works fine for me. Can > you post an example? > > --Klaus > > On 11 Jun., 12:10, Andri <[EMAIL PROTECTED]> wrote: > > > oops..sorry > > > apparently if i use > > > &g

[jQuery] Re: changing value of hidden input

2008-06-11 Thread Andri
oops..sorry apparently if i use it's also doesnt work On Jun 11, 2:44 pm, Andri <[EMAIL PROTECTED]> wrote: > I have this input > > then when i try to change it with > $('[EMAIL PROTECTED]').val('change to somethat'); > > it doesn't work

[jQuery] changing value of hidden input

2008-06-11 Thread Andri
I have this input then when i try to change it with $('[EMAIL PROTECTED]').val('change to somethat'); it doesn't work. if i change the type to 'text' it works. from now on i'm just write like this i just curiuos is there any tricks to change the input, from the 'hidden' input not 'text'

[jQuery] Select Form With Image

2008-06-03 Thread Andri
Is there any solution using jquery for this problem?

[jQuery] Re: Make Readonly input text

2008-04-22 Thread Andri
gt; > $(document).ready(funtion() { > > $('#myCheckbox').click( function() { > > // Disable myTextBox when myCheckbox is "checked" > > $('#myTextBox').attr

[jQuery] Re: Make Readonly input text

2008-04-22 Thread Andri
#x27;disabled', false); > > // Make "a" read-only > a.attr('readonly', true); > > // Make "a" not read-only > a.attr('readonly', false); > > Karl Rudd > > On Wed, Apr 23, 2008 at 12:19 AM, Andri <[EMAIL PROTECTED]>

[jQuery] Re: Make Readonly input text

2008-04-22 Thread Andri
gt;$(a).attr("disabled","disabled"); > } > else { > $(a).removeAttr("disabled"); > } >} > > On Apr 22, 7:3

[jQuery] Re: Make Readonly input text

2008-04-22 Thread Andri
PROTECTED]" <[EMAIL PROTECTED]> wrote: > Use the attr function > > On Apr 22, 3:19 pm, Andri <[EMAIL PROTECTED]> wrote: > > > Hi, I'm newbie here > > > there is two input form, checkbox and text. i want if I checked the > > chekbox,

[jQuery] Make Readonly input text

2008-04-22 Thread Andri
Hi, I'm newbie here there is two input form, checkbox and text. i want if I checked the chekbox, the input text will become readonly, and if i checked again, the input text back to normal. I'm trying make this function function makeReadOnly(a) { if ($("a:contains('readonly

[jQuery] Re: Problem With FadeOut

2008-04-08 Thread Andri
anyone? :(

[jQuery] Problem With FadeOut

2008-04-02 Thread Andri
This is my first project using jquery, and i also I'm newbie to javascript. I Making a component for joomla using jquery, to make slideshow. see http://lapollainc.net/index.php?option=com_smartjgallery&task=slideshow&Itemid=33. on local site the transition is okay. but when i uploaded to server t