Re: [jQuery] Implementing JCrop in Ajax Upload

2010-01-28 Thread adi sembiring
alert(data.path) show? On Wed, Jan 27, 2010 at 8:21 PM, adi sembiring sembiring@gmail.com 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 jquery to its container

[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(img src=' + data.path + ' width=\460\ id=\cropbox\ alt=\cropbox\ /); but the image

[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:

[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 `a href=http://localhost/student/delete/1;`. In the real case I delete the

[jQuery] how to get href value

2010-01-19 Thread adi sembiring
I'm trying to get href value from anchor tag. code $(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(); }); }); a

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 m...@mg.to 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: