[jQuery] Looking for Content Slider

2009-09-15 Thread Mario
) - it should identify and slide through all divs automatically because I will often change the number. (That is fulfilled by most sliders I found). Does anybody know a solution? Bye, Mario.

[jQuery] Re: Hover does not stop

2009-09-03 Thread Mario
Now it works fine! Thanks a lot to all for your help! $(function(){ var state = 0; $('#navigation').mouseover( function() { if(state == 0) {$(this).animate({left: '0'}, 'slow'); state = 1;}} ); $('#navigation').mouseout( function() {if(state == 1)

[jQuery] Re: Hover does not stop

2009-09-01 Thread Mario
ok, i tried this and this works fairly. but another question is: can i change the state AFTER the animate() is finished? (there are still some problem when i touch certain points while sliding) $(function(){ var state = 0; $('#navigation').mouseover( function() {

[jQuery] Re: Hover does not stop

2009-08-28 Thread Mario
Toggle works fine. But the problem now is that I always have to click and I wanted the menu ot appear and disappear onmouseover/mouseout.

[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: Hover does not stop

2009-08-27 Thread Mario
This works a little bit better, however, it slides still one more than I want and I cannot access the Menu because it starts to move left immediately.

[jQuery] Re: Hover does not stop

2009-08-27 Thread Mario
Yes, here it is: http://www.ulmercampus.de/try This has position:absolute, but position:relative works similar as mentioned.

[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] - tableFormSynch if (Empty) {Error}

2009-03-03 Thread Mario Moura
Nice plugin, I just want report a error if the list is empty, If you delete all itens, you cant add more itens anymore. I tried start from a empty list and same error, but I am still reading and studing this plugin. Congratulations Brian, Regards macm

[jQuery] Beginner question: AJAX doesn't work

2009-02-27 Thread Mario
Hello everybody, I tried some jQuery AJAX tutorials and got started with jQuery. Moving further, I got stuck somewhere in my code and I don't know, why. What I wanna do is simple: give an email address to a php script and display the script's answer in my page without reloading. so this is what

[jQuery] Re: jQuery 1.3.2 Released

2009-02-21 Thread Mario Moura
var Jquery = 1.3.2 $(this).amazing({ // thanks John Resig }); Cheers Mario macm 2009/2/20 James james.gp@gmail.com Thanks! So far it seems to be working without issues on my projects, including those with UI 1.6rc6. :) On Feb 20, 4:01 pm, John Resig jere...@gmail.com wrote

[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] Back or Continue Solution to UI Tabs and Jquery Form

2009-02-06 Thread Mario Moura
Hi Folks I did this with ajax tab options and Jquery Form $(document).ready(function() { $(#myForm).ajaxForm( function() { $(#tabs).tabs(select,2); }); }); Inside of my tab 1 have input type=submit id=back class=click value=« Back name=back/ input type=submit id=continue

[jQuery] Re: Back or Continue Solution to UI Tabs and Jquery Form

2009-02-06 Thread Mario Moura
Hi James Not yet, but thanks. if I find a solution I will post here. Cheers! macm 2009/2/6 James james.gp@gmail.com How about, instead of: x = this.id; try: x = $(this).attr('id'); On Feb 6, 1:22 am, Mario Moura moura.ma...@gmail.com wrote: Hi Folks I did this with ajax

[jQuery] Re: Back or Continue Solution to UI Tabs and Jquery Form

2009-02-06 Thread Mario Moura
); } } }); return false; } ); Regards macm 2009/2/6 Mario Moura moura.ma...@gmail.com Hi James Not yet, but thanks. if I find a solution I will post here. Cheers! macm 2009/2/6 James james.gp@gmail.com How about, instead of: x = this.id; try: x

[jQuery] Re: Superfish

2009-02-05 Thread Mario
thanks for the response. Any idea where I can get some code that will allow me to create such navigation system? I'd appreciate the information. On Feb 4, 7:37 pm, Joel Birch joeldbi...@gmail.com wrote: Hello, I think that it's simply a matter of including multiple ul elements inside the

[jQuery] Superfish

2009-02-03 Thread Mario
I really love the navigation system used at the whitehouse.gov website. Can you tell me how I can implement a similar navigation system on my website? What I like about it is how the drop down menu gives you multiple sub menus that are arranged in different columns within the same drop down

[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: clueTip: Can a tip with activation: 'click' also have a close?

2008-11-18 Thread Mario Fdo Andrade R.
Hi PLEASE !!! I don't want to recive yours mails any more Thank you Best regards, meilleures salutations, mejores saludos Mario Fdo. Andrade R

[jQuery] Re: My menu divs get behind content when shown on IE

2008-11-06 Thread Mario Estrada
put a very high z-index property on your css, that will hopefully do the job. .menu_items{ z-index:500; } .Mario +593 9 3623535 [EMAIL PROTECTED] http://mario.ec On Thu, Nov 6, 2008 at 2:29 PM, FG [EMAIL PROTECTED] wrote: I'm using jQuery for showing hidden menus on this page: http

[jQuery] Re: toggleClass and CSS inheritance

2008-11-06 Thread Mario Estrada
Something like this may work: div class=toggler id=anyblah/div $('#any').click(function(){ $(this).toggleClass('open'); $(this).toggleClass('toggler'); } .toggler {background:#fff;} .open {background:#000;} .Mario +593 9 3623535 [EMAIL PROTECTED] http://mario.ec On Thu, Nov 6, 2008 at 4

[jQuery] DW CS4 plugin?

2008-10-24 Thread mario
Hi i was using an extension for jQuery with Dreamweaver CS3 from http://xtnd.us/, but with CS4 it makes all the syntax coloring purple and very hard to work on. Does anyone knows an alternative?

[jQuery] Re: Resetting the html in a div affects the behaviour of event handling?

2008-10-20 Thread Mario
Thank you very much for the hint. Now that you set me on the right path, I will try first to better understand the bind function. Best, Mario

[jQuery] Resetting the html in a div affects the behaviour of event handling?

2008-10-19 Thread Mario Callisto
. So it works just the first time I load the page. I also tried to empty() the div before step 2, but no improvements. Any suggestion? Best, Mario

[jQuery] UI Autocomplete documentation

2008-09-30 Thread mario
Hi, Im using the latest UI rc2 and I am going to use the autocomplete that comes with Jquery UI 1.6, but I can't find any documentation, I read it was based on a plugin and i think i should use that documentation, but don't know which autocomplete plugin it is based on. Thanks, Mario

[jQuery] - Object Oriented / PHP5 - Possible BUG with Jquery

2008-09-25 Thread Mario Moura
PHP/Browser/JavaScript or Jquery. So I am reporting. My felling tell me that I am sending all this stuffs (script/) to an Object and something is going wrong there. Hope someone can help me. Regards Mario macm

[jQuery] Re: - Object Oriented / PHP5 - Possible BUG with Jquery

2008-09-25 Thread Mario Moura
Hi Ricardo Thanks. Works fine now! You saved my day! Regards Mario NOT A BUG!! MY FAULT! SOLVED 2008/9/25 ricardobeat [EMAIL PROTECTED] I have no clue on the PHP side of this, but try this script instead: script type=text/javascript $(document).ready(function() { $(#out).click

[jQuery] Re: Dynamic created element doesn't respond to event

2008-09-24 Thread mario
Thank you very much, will look into it :D On Sep 23, 9:30 pm, Richard D. Worth [EMAIL PROTECTED] wrote: See http://docs.jquery.com/Frequently_Asked_Questions#Why_doesn.27t_an_ev... It contains a couple of workarounds. - Richard On Tue, Sep 23, 2008 at 8:03 PM, mario [EMAIL PROTECTED

[jQuery] Listen for location anchor change?

2008-09-24 Thread mario
Hi, I was just wondering if there is anyway to listen for changes on the location bar when a link sets an anchor on the same page. Example: current location: www.something.com/ I click on a link and it takes me to: www.something.com/#someanchor Is there anyway to listen for this

[jQuery] Re: Listen for location anchor change?

2008-09-24 Thread mario
of the anchor along with the # sign. andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of mario Sent: Wednesday, September 24, 2008 3:09 PM To: jQuery (English) Subject: [jQuery] Listen for location anchor change? Hi, I was just

[jQuery] Dynamic created element doesn't respond to event

2008-09-23 Thread mario
. Is this normal behaviour or is there a workaround or a fix or am i doing something wrong? Thanks in advance, Mario

[jQuery] this - Basic question

2008-09-05 Thread Mario Moura
) .not(div.w) and a lot of variations Look I am not working in the document I have this in this argument. so $(this).html() = my text please! div class=wI dont want this children/div so I want remove div class=wI dont want this children/div Regards Mario macm

[jQuery] Re: this - Basic question

2008-09-05 Thread Mario Moura
Mike Thanks a Lot! Works like a charm! and thanks for the nice // comments Regards Mario 2008/9/5 Michael Geary [EMAIL PROTECTED] Your question isn't really about this, but about how to get some text that isn't in its own element. It's just a text node inside the .tr element. Can you

[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: Calling PHP Functions from jQuery?

2008-07-14 Thread Mario Wolff
On 14 Jul., 16:11, Yavuz Bogazci [EMAIL PROTECTED] wrote: is it possible to call php functions from jquery? My way: PHP: ?php function utf8_encode_recursive($arr){ array_walk_recursive($arr,create_function('$item, $key','$item=utf8_encode($item);')); return $arr; }

[jQuery] Re: Different between this and $(this)

2008-06-26 Thread Mario Wolff
Hi! Very simple: this is the (DOM)-object and $(this) is a jquery-object containing the (DOM)-object. To use jQuery methods you need a jQuery object! Regars, Mario On 26 Jun., 15:02, x-herbert [EMAIL PROTECTED] wrote: Hi jQueries; what is the different between this and $(this) ?? I try

[jQuery] Re: Write binary data (from server) is possible with Ajax?

2008-06-26 Thread Mario Wolff
, Mario PS: My english is also pure! On 26 Jun., 15:36, jgmaux [EMAIL PROTECTED] wrote: Ttanks, Liam Sorry, my english language is very bad.. I'like to receive, via ajax,  a binary data (application/octet-stream) from server. And I pass it to the browser for display download window dialog

[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

[jQuery] Re: jQuery Firefox bug.

2008-03-03 Thread Mario
Hi! What do you mean? I didn't understand! a href=javascript:__doPostBack('wt_Linkwidget28','') onclick=return false; id=wt_Linkwidget28OutSystems corporate site/a Cheers, Mário On Feb 22, 10:14 pm, ruizbennett [EMAIL PROTECTED] wrote: If you remove the href (which has the postback), it will

[jQuery] jQuery Firefox bug.

2008-02-22 Thread Mario
Hi! I have several links using jQuery that have only the purpose of showing help information. They are virtual links because they don't link anywhere (i.e. onclick = return false). When using jquery with these kinds of links, Firefox seems to ignore the return false sentence. Here's an example

[jQuery] Great Video Tutorials, Cool Help...

2008-02-03 Thread Mario Feonands
Cool Help Videos...Here's the place to find cool video tutorials like how to get One Way SEO Links,Link building videos,photoshop tutorials,spyware help,computer games help,website traffic help and much more... COOL HELP - GREAT VIDEOS Visit http://www.coolhelp.info/ Thank you.

[jQuery] .::: New Social Networking Site :::.

2008-01-24 Thread Mario Feonands
Hi !! How are you ? myLoveZone is a new social networking site designed for all the people around the world. Please support us by visiting our site. Visit Us @ Visit http://my.lovezone.ro Thank you very much.

[jQuery] Problem with Ajax and Firefox - request status is 0

2008-01-21 Thread Mario Villar
Hi everyone. I'm having trouble using the $ajax() jQuery function. The same happens to me in three diferent Ajax calls in two different projects. I'll post sample code of one of them, since I can't really find a pattern common to all three (but different than the other Ajax calls in my code that

[jQuery] Re: Is it possible get the data from ajaxSuccess?

2007-12-15 Thread Mario Moura
check1. How can I access the value of an object in Javascript? Thanks for your help, And David thanks too, I am trying test all ajax response no matter where they came from. Regards Mario Moura 2007/12/15, David Serduke [EMAIL PROTECTED]: On Dec 14, 1:06 pm, Richard D. Worth [EMAIL PROTECTED

[jQuery] Is it possible get the data from ajaxSuccess?

2007-12-14 Thread Mario Moura
, success: on_success_two}); So in this scenario I will test each AJAX request and One by one I could create a sucess function. But my question is different I want create a ajaxSuccess to test all data from all AJAX request if someone fit my desire I run my function. Regards Mario Moura

[jQuery] Re: Is it possible get the data from ajaxSuccess?

2007-12-14 Thread Mario Moura
.php ,}); But at this moment. I think is not possible. But could be a good improve. Did you understand? Regards Mario Moura 2007/12/14, Giovanni Battista Lenoci [EMAIL PROTECTED]: Don't know if I understood, $.ajax({type: POST, url: foo2.php, data: data, dataType

[jQuery] Re: Is it possible get the data from ajaxSuccess?

2007-12-14 Thread Mario Moura
. If is it possible of course. And now I will study a lot of JavaScript Syntax. ;) Regards Mario Moura 2007/12/14, Richard D. Worth [EMAIL PROTECTED]: You could declare a function and give it a name, instead of using an anonymous function, then pass that as the success function

[jQuery] Re: Is it possible get the data from ajaxSuccess?

2007-12-14 Thread Mario Moura
; } }); $(#target).ajaxSuccess(function(request, settings){ $(function() { if (check1 == something) { $(this).append(check1); } }) }); Ideas how can I fix check1 is not defined? Regards Mario Moura 2007/12/14

[jQuery] Share my trick to debugger Jquery with FireBug

2007-12-13 Thread Mario Moura
be useful Regards Mario Moura macm

[jQuery] Jquery Forms - On the Fly

2007-12-13 Thread Mario Moura
: function(data) { // something } }); I tried Copy Events plugin but didnt work with Jquery Forms or I made something wrong. Can Brandon Aaron help me? Seems to be the expert in this area. Someone have an Idea? Regards Mario Moura macm

[jQuery] Re: Jquery Forms - On the Fly

2007-12-13 Thread Mario Moura
commit this improve to Jquery Forms Documentation. Regards Mario Moura 2007/12/13, Mario Moura [EMAIL PROTECTED]: Hi I want create a AJAX Forms on the fly. $(#mychild).ajaxForm({ success: function(data) { $(#target).append($('#OnTheFly').clone().attr

[jQuery] Re: Form Plugin and File Uploads (form.submit() is not a function)

2007-12-08 Thread Mario Moura
Thanks Mike You save my day. Regards Mario 2007/12/8, Mike Alsup [EMAIL PROTECTED]: On Dec 8, 2007 8:23 AM, Mario Moura [EMAIL PROTECTED] wrote: Hi All Same question. my form is something like form method=post id=myForm class=cssform action=../submitajax.php input type

[jQuery] Re: Form Plugin and File Uploads (form.submit() is not a function)

2007-12-08 Thread Mario Moura
Hi All Same question. form.submit is not a function form.submit(); Works fine without file upload field. I didnt understand about files.php. What is inside this file? my form is something like form method=post id=myForm class=cssform action=../submitajax.php input type=hidden value=?php

[jQuery] Ajax ie7 $.post

2007-12-03 Thread Mario Moura
, function(){ with alert and the alert works in ie7 but the problems should be in $.post because I let a debug(DebugBreak())open into my php file and $.post didnt send nothing to there. I read some asnwers about chache and headers but I couldnt understand. Regards Mario Moura macm

[jQuery] Re: Ajax ie7 $.post

2007-12-03 Thread Mario Moura
Sorry, works fine with ie7 I miss remove last ,' mytext:$(input#url).val(), == Jquery is amazing. Regards Mario Moura 2007/12/3, Mario Moura [EMAIL PROTECTED]: Hi folks I tried make a simple ajax and didnt work in ie7. FF works fine. script $(document).ready(function

[jQuery] Documentation of datatype map

2007-11-30 Thread Mario Wolff
; $_GET['key'][1]=bar; in PHP. Maybe that hint is useful for someone or get's included to the documentation. Regards, Mario Wolff

[jQuery] Resize and Crop - Sugestion to Crop.js Plugin

2007-09-13 Thread Mario Moura
Hi Folks I was testing crop plugin, amazing and easy. But crop plugin get object properties (from the file). I would like to suggest to get height and width from img 'line' example: img width=100 height= src=/files/myimage.JPG alt= title=/ Regards Mario

[jQuery] Re: How to solve problem with zindex and active elements

2007-09-07 Thread Mario Moura
Hi Other solution could de CSS overflow: http://www.w3schools.com/css/pr_pos_overflow.asp Regards Mairo 2007/9/4, Dan Evans [EMAIL PROTECTED]: You could add a click event that only gets fired once to the the mask. Something like: $('#maskID').one('click', function(){

[jQuery] Re: where is Fisheye menu (not from interface)

2007-09-04 Thread Mario Moura
Ok, thanks a lot Mario 2007/9/4, Joel Birch [EMAIL PROTECTED]: I swear had seen Fisheye menu solution but it wasnt from Interface. It was another JQuery Plugin. Yep, this rings a bell for me. Mainly due to the slightly misleading title CSS Dock Menu. It doesn't degrade gracefully

[jQuery] Webmaster Remove false plugin from JQuery

2007-09-04 Thread Mario Moura
my apologize Regards Mario

[jQuery] where is Fisheye menu (not from interface)

2007-09-03 Thread Mario Moura
Hi folks I swear had seen Fisheye menu solution but it wasnt from Interface. It was another JQuery Plugin. Anyone know where is it? Regards Mario

[jQuery] Jcarousel fadeIn and fadeOut

2007-08-29 Thread Mario Moura
Hi Folks I am impress how jcarousel is easy to setup. http://sorgalla.com/projects/jcarousel/#Configuration Congratulations Jan. If I am using scroll: 1, I dont like of scroll effect (right to left) and I prefer use fadeIn and FadeOut between images. Is it possible? How? Regards -- Mário

[jQuery] Re: Dynamic Form Validation?

2007-08-24 Thread Mario Moura
thanks for help. Regards Mario 2007/8/23, Jörn Zaefferer [EMAIL PROTECTED]: SeViR schrieb: How I can see the correct code would be: $(#theform).validate({ rules:{ t2: { required: function(element){ return $(t1).value == test

[jQuery] Re: Dynamic Form Validation?

2007-08-24 Thread Mario Moura
is the type == input type=submit ... So I only can imagine that in some place into plugin tell to acept all submit buttons or IF NOT should have a function to avoid this (acept all submit clicks) Do you understand? Like I said I am not sure about this. Regards Mario 2007/8/24, Jörn Zaefferer [EMAIL

[jQuery] Re: Dynamic Form Validation?

2007-08-23 Thread Mario Moura
, function(){ $(#node-form)[0].submit( function() { $(#attach-button).unbind(); } ); return false; }); }); Ideas? Regards Mario 2007/8/23, SeViR

[jQuery] Re: Dynamic Form Validation?

2007-08-22 Thread Mario Moura
. My Form is: form enctype=multipart/form-data id=myform method=post action=/send/invoice input type=submit class=form-submit value=Attach id=attach-button name=attach/ input type=submit class=form-submit value=Submit id=edit-submit name=op/ /form Regards Mario 2007/8/18, SeViR [EMAIL

[jQuery] Re: Checkbox updating database asynchronously?

2007-08-22 Thread Mario Moura
Hi Look http://docs.jquery.com/Ajax Regards Mario 2007/8/22, Steve Finkelstein [EMAIL PROTECTED]: Hi all, I'm looking for a simple way to change a boolean value in a database based on whether a checkbox is checked or not in a jquery environment. Would anyone be kind enough to point me

[jQuery] Re: Jquery can show Images from file:///C:?

2007-08-18 Thread Mario Moura
Hi Andy I really wish but I am not JQuery Ninja, yet. ; ) Mario 2007/8/17, Andy Matthews [EMAIL PROTECTED]: Yeah...would be nice if someone took something like that and converted it to a plugin. Mario? YOu up for it? :) -- *From:* jquery-en

[jQuery] Re: Dynamic Form Validation?

2007-08-17 Thread Mario Moura
Hi take a look http://dnaide.blogspot.com/2007/05/validationaide-easy-as-client-side-form.html BrowserSide validation. Very good. Regards Mario 2007/8/17, SeViR [EMAIL PROTECTED]: I suppose that you need a custom rule due to validation plugin don't support relations between fields

[jQuery] Re: Jquery can show Images from file:///C:?

2007-08-17 Thread Mario Moura
Hi Wow. Looks great. ASAP I will study this I saw that fileExtension is caseSensitive so probably should have fileExtension == JPG fileExtension == jpg fileExtension == Jpg to avoid trouble. thanks a lot Andy for share this Regards Mario 2007/8/17, Joan Piedra [EMAIL PROTECTED]: Hello

[jQuery] Jquery cant manipulate inline TinyMCE. Why?

2007-08-16 Thread Mario Moura
Hi Folks I am trying use inline TinyMCE with Jquery. http://wiki.moxiecode.com/examples/tinymce/installation_example_05.php I follow instructions to make Jquery work with Other Libraries and its working. When I try manipulate elements into the inline doesnt work. If I print the script into

[jQuery] Re: Plugin: frameReady updated. Now with better docs and demos ;)

2007-08-16 Thread Mario Moura
. Will be more friendly to the user. It is simple, secure and fast but first we need frameReady work there. May you help me if you have time? Regards Mario 2007/4/19, Daemach [EMAIL PROTECTED]: I just updated frameReady to support loading script and stylesheet files in other frames, including nested

[jQuery] How pass more variables in Star Rating System (AJAX Question)

2007-08-14 Thread Mario Moura
Hi Folks I saw that Star Rating System pass only the vote. How can I add more variables? Something like this: $.post(url.php, { user: $('#user').attr('name'), currenttime : $('#currenttime').attr(name), }

[jQuery] Re: How pass more variables in Star Rating System (AJAX Question)

2007-08-14 Thread Mario Moura
vote. But When the mouser cross over the start rate system, change the class again to star and I lose my preformat visibility. Ideas how can I fix this? Regards Mario 2007/8/14, Mario Moura [EMAIL PROTECTED]: Hi Folks I saw that Star Rating System pass only the vote. How can I add more

[jQuery] Re: Please fix TreeView bassistance - Please DEV to not stable plugins

2007-08-10 Thread Mario Moura
Ok Sorry. was suggestion. My mistake. Sorry again. Back to work or back to hacking. ; ) Cheers Mario 2007/8/10, Stephan Beal [EMAIL PROTECTED]: On Aug 10, 3:31 am, Mario Moura [EMAIL PROTECTED] wrote: Please John Resig ask to plugin providers make plugins to work with all browsers

[jQuery] Please fix TreeView bassistance - Please DEV to not stable plugins

2007-08-09 Thread Mario Moura
to work with all browsers (or FF and IE at least) if no please post JQuery.NamePlugin(DEV).js or something like this. DEV to Not Stable. Drupal team do this and work well Regards Mario

[jQuery] Re: Please fix TreeView bassistance - Please DEV to not stable plugins

2007-08-09 Thread Mario Moura
Hi With few elements can work well but if you create a tree with 100-200 elements can have some problems. In Todo of Treeview Advise * Animations in IE are not perfectly smooth But It is just a idea to plugins providers DEV to not stable versions. Regards Mario 2007/8/9, Ganeshji Marwaha

[jQuery] Jquery can show Images from file:///C:?

2007-08-07 Thread Mario Moura
this. And avoid malicious users consume my bandwidth traffic. So I am trying use AJAX to simulate Upload Ajax? and when forms is already send images normaly (without ajax). So Jquery can show Images from file:///C:? or something like this? Regards Mario

[jQuery] Re: Jquery can show Images from file:///C:?

2007-08-07 Thread Mario Moura
Ok Stephan Thanks a lot for this explain. Now I can go to right way. Regards Mario 2007/8/7, Stephan Beal [EMAIL PROTECTED]: On Aug 8, 1:28 am, Mario Moura [EMAIL PROTECTED] wrote: What I am trying is show an image into my browser with this tag img width=50 height=50 src=file:///C

[jQuery] Drag and Drop links

2007-08-02 Thread Mario Moura
but very useful for many web app. Regards Mario Moura

[jQuery] Re: Two words for Jquery

2007-08-01 Thread Mario Moura
BJ AJ (Before JQuery) (After JQuery) ; ) Mario 2007/8/1, Matt Stith [EMAIL PROTECTED]: Ok then ;) On 8/1/07, Aaron Heimlich [EMAIL PROTECTED] wrote: On 8/1/07, Matt Stith [EMAIL PROTECTED] wrote: O rly? Ya rly -- Aaron Heimlich Web Developer [EMAIL PROTECTED

[jQuery] load() and .ajax How can I do to not freeze my page?

2007-07-31 Thread Mario Moura
Hi Folks I am trying understand load() and $.ajax When I insert this code. $('#loadContent').click(function(){ $(#myid).load(http://localhost/final/myajax.php;); }); My php file run a query and return a DOM (because I saved my DOM into my MySql, caching) The problem is this function

[jQuery] Sliding an image into a box - Little animation

2007-07-28 Thread Mario Moura
Hi Folks I am trying make a little effect. In my menu/box/container I want a Sliding effect of a image or background color. So when mouseover -- the image complete the box from left to right. One time and stop. $(dd/ul/li).mouseover( function() {

  1   2   >