[jQuery] Meio mask

2009-08-28 Thread Mario Soto
Hi everyone. I'm having troubles with meiomask to allow spaces in a field that will allow only letters, numbers and spaces of course. I've tried already with the responses but, doesn't work. Any help? Thanks

[jQuery] Meio mask

2009-08-28 Thread Mario Soto
Hi everyone. I'm having troubles with meiomask to allow spaces in a field that will allow only letters, numbers and spaces of course. I've tried already with the responses but, doesn't work. Any help?

[jQuery] Re: treeview, can only let +- expand tree?

2009-07-24 Thread Mario Soto
Renewind this post. I have the asame problem. If any knows the solution, please post, or guide to proper answer. Thanks.

[jQuery] Re: Protect images

2009-06-26 Thread Mario Soto
@Jonathan Vanherpe (T T NV) Yes, some demotivational posters are son funny (some others ... not recommended). Well. Following your comment, I decided to disable right click on the div. I will use JQUERY RIGHT-CLICK PLUGIN (http:// abeautifulsite.net/notebook/68) and try to avoid the context menu

[jQuery] Re: Protect images

2009-06-25 Thread Mario Soto
... You could also use javascript canvas but that does not work in IE without a plugin On Jun 24, 1:49 pm, Mario Soto canc...@gmail.com wrote: Hi. I want to know if there is a way to protect images that are styled with an overflow auto. I found a lot of tutorials, scripts and plugins

[jQuery] Protect images

2009-06-24 Thread Mario Soto
? Will be vary good recieved. Thanks. -- Mario Soto marios...@cancuen.net ..._

[jQuery] Re: how to ask questions

2009-06-24 Thread Mario Soto
@michael, thanks for pointing out that 2 questions were answered. This is my first google group and i figured that replies to my post would be emailed to me. maybe i can set that up in settings or something. The answers can be emailed to you. Remember that this is a group and we all respond

[jQuery] Re: Protect images

2009-06-24 Thread Mario Soto
Thanks for your response. Details below. The immage is loaded via ajax, so I create the img tag every time, and empty de div that contains the image. This is the css for the div that contains the immage: .ifDiv { border:1px solid #00; height:500px; overflow:auto;

[jQuery] Re: Bug? Jquery 1.3.2 - $.ajax + Firefor 3.0.8

2009-04-23 Thread Mario Soto
Fixed with Firefox Version 3.0.9. I don't know if is something specifically related to the browser but yesterday it downloaded the new version and installed, and problem solved. The data is actually what i sended plus the js code: $.ajax({ type: 'POST',

[jQuery] Bug? Jquery 1.3.2 - $.ajax + Firefor 3.0.8

2009-04-22 Thread Mario Soto
The $.ajax function is causing me trouble, I'm using Mozilla Firefox 3.0.8 in a Kubuntu 8.10 computer, with php PHP/5.2.6-2ubuntu4.2 and web server Apache/2.2.9 (Ubuntu) PHP/5.2.6-2ubuntu4.2 with Suhosin- Patch and jQuery version 1.3.2. If I use dataTipe: 'json' and type:'post' with $-ajax,

[jQuery] Re: Bug? Jquery 1.3.2 - $.ajax + Firefor 3.0.8

2009-04-22 Thread Mario Soto
or not. On Apr 22, 7:28 am, Daniel dcosta...@gmail.com wrote: This may be silly, but I notice you put dataTipe instead of dataType. If this is what your code looks like also, then there is your problem right there... On Apr 22, 4:56 am, Mario Soto canc...@gmail.com wrote: The $.ajax

[jQuery] change not working

2009-02-13 Thread Mario Soto
. $('#selectId').change(function(){ // validations }); Happens that when I change that select using jquery it doesn't validates (but does when user updates the field on the browser). Any ideas to solve this problem, are very welcome.. -- Mario Soto marios...@cancuen.net ..._

[jQuery] Re: change not working

2009-02-13 Thread Mario Soto
Neither I did find troubles.. :P This is code like I use it. I check the select and then for it's value check what to do. switch($('#selectId').val(){ case 1: // say hello break; case 2: // say good bye break; case 3: case 4: case 5:

[jQuery] Re: Internet Explorer not firing ajax get on success of ajax post

2009-02-06 Thread Mario Soto
Add an error part and see what's going on... (just rigth after succss, comma separated) error: function(object,text,error){ alert(object.status); } On Feb 5, 2:37 pm, georgelaugha...@gmail.com georgelaugha...@gmail.com wrote: I have a web application

[jQuery] Re: Download a file from server...

2009-01-22 Thread Mario Soto
It must be using http headers: header('Content-Disposition: inline; filename='. $filename.'.pdf'); header('Content-type: application/x-pdf'); echo $pdfData; die(); By example. - On Jan 22, 3:05 am, Genus Project genusproj...@gmail.com wrote: or you can do

[jQuery] Re: Download a file from server...

2009-01-22 Thread Mario Soto
In the post above by Alexandre Plennevaux, the link says how to. :) On Jan 22, 9:38 am, Mario Soto canc...@gmail.com wrote: It must be using http headers:         header('Content-Disposition: inline; filename='. $filename.'.pdf');         header('Content-type: application/x-pdf

[jQuery] Re: avoid inserting twice

2008-11-30 Thread Mario Soto
As I understand you have the problem that some information you send via AJAX is been sended two, tree, etc. times because the user gets desperate and can't wait a couple of seconds. If that's you case, happened to me too. I solved with blockUI. I blocked, pages, or even part of a page

[jQuery] Re: $.post problem. need help badly

2008-07-15 Thread Mario Soto
you can call a function when web service returns the result of the page that database already saved the info: function otherajaxcall(pa,ra,me,ter){ $.ajax({ type: POST, url: someother.php, data: age=25gender=male, success: function(msg){ alert(msg); } }

[jQuery] Re: Display JSon String

2008-07-15 Thread Mario Soto
If you're using ajax, try the dataType option to be setted as json, and so, the message from the server formatted as json, will be automatically transformed into an array. Check, if you're using a php version that supports json convert function, so, you can use json_encode(). if not, check

[jQuery] Re: Replacing html in ajax success callback?

2008-07-15 Thread Mario Soto
Easy. Put an id to your tag, and then: $ ('#id').html(replacementcontent); it doesn't matter what type of tag you can put an id to the tag.

[jQuery] Re: Animation for adding branches

2008-06-13 Thread Mario Soto
With tree stuff, I've been dealing stuff with interface plugin: http://interface.eyecon.ro/demos/drag_drop_tree.html When I modified, is very useful.

[jQuery] Re: Get the first li clicked

2008-06-09 Thread Mario Soto
I'm getting into similar problem, to get elements, without the nested content. (http://groups.google.com/group/jquery-en/browse_thread/ thread/1e936a8bbf4f1f49#). Maybe some has an idea that we don't and help us. Thanks all.

[jQuery] Re: Get the first li clicked

2008-06-09 Thread Mario Soto
I founded this, might work: http://docs.jquery.com/Traversing/children#expr 2008/6/9 Mario Soto [EMAIL PROTECTED]: I'm getting into similar problem, to get elements, without the nested content. (http://groups.google.com/group/jquery-en/browse_thread/ thread/1e936a8bbf4f1f49#http