[jQuery] UNSUSCRIBE

2010-01-19 Thread Juan Ignacio Borda
unsuscribe attachment: juanignacioborda.vcf

Re: [jQuery] .load() not functioning correctly on IE

2010-01-14 Thread Juan Borda
does $(#datatable) exists when you call the function? is it called at document ready? 2010/1/14 gib gib...@googlemail.com $(#datatable).load(includes/Remotes.asp,{funcType: getData}, function (responseText, textStatus, XMLHttpRequest) { alert(responseText); // dom element

Re: [jQuery] jQuery stripping HTML tags from Ajax response

2010-01-14 Thread Juan Borda
if is not a valid place the code would be loaded but the brower won't display because of error 2010/1/13 Beckley beckleywo...@gmail.com Hi, Here's what I'm working with (#thing is a table): $.get(/applications/stuff.php, { '_request':'thing', 'id':id,

Re: [jQuery] not able to receive POST data in php file

2009-12-21 Thread Juan Ignacio Borda
try a var_dump($_REQUEST) to see what's being submited. Original Message i am using the following JQuery function to successfully POST data to the user_submit.php file, its just that the php file is unable to receive the data. $(function() {

Re: [jQuery] Re: running an onload code snippet only once

2009-12-16 Thread Juan Ignacio Borda
try using: $(document).ready(function(){ ...your code here }); this is the JQuery way Original Message Those events window.onload, in jQuery, that would be $(window).load (...), should *not* be firing at any time other than when the document loads the first time...

[jQuery] Scrolling plugin from LearningJquery.com

2009-12-14 Thread juan-i
This is the plugin i'm referring to: http://www.learningjquery.com/2007/10/improved-animated-scrolling-script-for-same-page-links I was wondering if there was any way to get the script to scroll to the section, minus 125px. If this wasn't clear enough, http://juan-i.com.ar/clientitos/smee

Re: [jQuery] Random problems with load()?????

2009-12-09 Thread Juan Ignacio Borda
try using firebug for firefox and look at the NET tab for response of the server. Original Message Hello everyone! I'm using load() to get some php content in ti a div, the PHP has a long switch() conditional that brings back contents depending on var received, it works

[jQuery] Specify CSS Path

2009-12-06 Thread Juan B
Hi, My JQuery scripts and CSS files are placed in different folders. Is it possible to specify the paths to my CSS files in my JQuery scripts so it can recognize its classes? Thanks

Re: [jQuery] Validate: a question about the Remote option

2009-12-01 Thread Juan Ignacio Borda
you have to actually echo the result of validation: true or false Original Message Hello everyone, I'm still dealing with that signup form. Now I'd like to check with an Ajax call if a login is already taken. That's what I'm doing: $(#signup).validate( { rules: { ulogin: {

Re: [jQuery] Validate: a question about the Remote option

2009-11-30 Thread Juan Ignacio Borda
hey..!!! you have to actually ECHO the result of your validation the remote method expects the response to be true or false. good luck! Original Message Hello everyone, I'm still dealing with that signup form. Now I'd like to check with an Ajax call if a login is already

[jQuery] (validate)

2009-11-21 Thread Juan Borda
hi there i'm working with the remote method of validator plug-in to have in response validity and a message... and i have it working! the plugin show the remote msg ok but on lost focus i get: Warning: No message defined for DE1695 the remote script always return {valid:tue,msg:somemsg} test

[jQuery] treeview - support for right to left language

2009-09-27 Thread Adrian San Juan
I was able to successfully install treeview in my app and it works very well. However, my app needs to support a right to left language. Is treeview able to support rtl? If not, is it possible to do code changes to support rtl? Cheers,

[jQuery] How to detect the browser close event using Jquery ?

2009-08-21 Thread Juan manueL
to catch the browser close event, no the page refresh, no the click thru, just the browser close... Anybody had the same problem ? Thanks all in advance!, Juan Manuel

[jQuery] Re: input field name include . jquery cann't parse

2009-05-26 Thread Juan Liu
这个有人清楚么?我也比较好奇

[jQuery] Re: How does Facebook do to edit profile picture thumbnails?

2009-03-08 Thread juan-i
missing concept click. On Mar 6, 8:03 pm, juan-i holamellamoju...@gmail.com wrote: I just can't figure that out! On FB, you get to change the thumnail for your profile picture. You have a containing div with dimensions of about 50x50 and you can move the image (which is actually bigger

[jQuery] How does Facebook do to edit profile picture thumbnails?

2009-03-07 Thread juan-i
I just can't figure that out! On FB, you get to change the thumnail for your profile picture. You have a containing div with dimensions of about 50x50 and you can move the image (which is actually bigger) inside that containing div until it displays what you want. Ideas?

[jQuery] Caching?

2008-04-25 Thread Juan Antonio Ibañez Santorum
Hello! I need to load a value (returned by a php script) into a textbox each 10 seconds, and reload web if this value change. I'm using next code: script src=jquery.js/script script $(document).ready(function() { //ajaxTime.php is called every second to get time from server var

[jQuery] tags / links with jquery

2008-01-10 Thread Juan
' 'Squash' and 'Running'. Once you click on those links... people with those common interest are returned. I'm assuming that it does call a database, could this be achieved with jquery ? if so how? or are there jquery libraries written already for this operation. Cheers Juan

[jQuery] tags / links with jquery

2008-01-10 Thread Juan
' 'Squash' and 'Running'. Once you click on those links... people with those common interest are returned. I'm assuming that it does call a database, could this be achieved with jquery ? if so how? or are there jquery libraries written already for this operation. Cheers Juan

[jQuery] Re: value of a

2007-10-10 Thread Juan G. Hurtado
. TypeError: this[0].value has no properties at anonymous(void) (test/jq/js/jquery.js:335) at anonymous() (test/jq/alinks.htm:13) at anonymous(Object) (test/jq/js/jquery.js:1776) at anonymous() (test/jq/js/jquery.js:1620) -- Juan G. Hurtado [EMAIL PROTECTED]

[jQuery] Plugin's method called chained with selector or not?

2007-08-01 Thread Juan G. Hurtado
. Hope everything is well explained, and sorry about my poor english. Thanks in advance. -- Juan G. Hurtado [EMAIL PROTECTED]

[jQuery] Re: Plugin's method called chained with selector or not?

2007-08-01 Thread Juan G. Hurtado
the plugin's method. First of all, thank you very much for your answer, it really make sense. I'm gonna test it right now, because it really seems to be the obvious way to do it. Thanks again. -- Juan G. Hurtado [EMAIL PROTECTED]

[jQuery] wish: WYSIWYG Form Editor

2007-06-15 Thread Juan Pablo Aqueveque
Hi jQuery gurus: I would like to see a WYSIWYG Form Editor like this one: http://www.themaninblue.com/experiment/widgEditor/ but in jQuery of course. Or already exists one?. ? Cheers -- juan pablo aqueveque www.juque.cl

[jQuery] Re: Newbie Parent question

2007-05-25 Thread Juan G. Hurtado
I think you should use parent as a function, with the (): alert($(this).parent().attr('class')); El 25/05/2007, a las 14:12, Matt W escribió: Hi folks, I started working with jQuery for the first time yesterday- and I've got something that I'm hoping you all may be able to help me figure