Re: [jQuery] Implementing JCrop in Ajax Upload

2010-01-28 Thread adi sembiring
What does alert(data.path) show? > > On Wed, Jan 27, 2010 at 8:21 PM, adi sembiring > wrote: > > Hi , I'm trying to develop image crop using JQuery. > > I use ajax to upload the image. after the image success fully uploaded. I > > load the uploaded image using j

[jQuery] Implementing JCrop in Ajax Upload

2010-01-27 Thread adi sembiring
Hi , I'm trying to develop image crop using JQuery. I use ajax to upload the image. after the image success fully uploaded. I load the uploaded image using jquery to its container. > $("#image_upload").html(" id=\"cropbox\" alt=\"cropbox\" />"); > but the image selection doesnt work. why it c

[jQuery] ask jquery upload progessbar

2010-01-26 Thread adi sembiring
Hi ..., I'm trying to search jquey upload with progess bar. Could you suggest me what plugin must I use ? Thanks -- Adi Gunanta Sembiring Blog: http://adisembiring.wordpress.com YM: adisembir...@yahoo.com GTalk: adi.sembir...@gmail.com e-mail: sembiring@gmail.com Facebook: sembiring@gma

[jQuery] Delete Row table using jquery

2010-01-20 Thread adi sembiring
Hi ... Supposed I have table like this idnameaddressaction -- s1n1a1delete s2n2a2delete delete is a link for example `http://localhost/student/delete/1";>`. In the real case I delete the student u

Re: [jQuery] how to get href value

2010-01-19 Thread adi sembiring
Got it ..., thanks all On Wed, Jan 20, 2010 at 1:22 PM, Michael Geary wrote: > But that would give you the href for the first A element in the document, > not necessarily the one you clicked. > > Going back to the OP's code, this.href would be the easiest way to get it: > > > $(document).ready(f

[jQuery] how to get href value

2010-01-19 Thread adi sembiring
I'm trying to get href value from anchor tag. $(document).ready(function() { $("a").click(function(event) { alert("As you can see, the link no longer took you to jquery.com"); //$("a").html.href; event.preventDefault(); }); }); ht