[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: 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] 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() { if(sta

[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] Looking for Content Slider

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

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

[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 wrote: > Hello, > > I think that it's simply a matter of including multiple ul elements > inside the parent li, then fl

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

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

2008-09-23 Thread mario
fix or am i doing something wrong? Thanks in advance, Mario

[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

[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 change/event

[jQuery] Re: Listen for location anchor change?

2008-09-24 Thread mario
>wrote: > > > > > > > Javascript has the built in property location.hash that will return the > > value of the anchor along with the # sign. > > > andy > > > -Original Message- > > From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTE

[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] Re: UI Autocomplete documentation

2008-09-30 Thread mario
> in:http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ > > On Sep 30, 4:57 pm, mario <[EMAIL PROTECTED]> wrote: > > > 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&#

[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] 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] 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 exampl

[jQuery] Re: jQuery & Firefox bug.

2008-03-03 Thread Mario
Hi! What do you mean? I didn't understand! OutSystems corporate site Cheers, Mário On Feb 22, 10:14 pm, ruizbennett <[EMAIL PROTECTED]> wrote: > If you remove the href (which has the postback), it will work in > firefox.

[jQuery] Re: Trick to pass input file

2007-04-02 Thread Mario Moura
Could I create in my target input a JQuery function to load, clone, submit, autofill or I dont know what to accept user choice from http://the-stickman.com/web-development/javascript/upload-multiple-files-with-a-single-file-element/ So I could get each path(element) and insert into each target

[jQuery] Re: Trick to pass input file

2007-04-03 Thread Mario Moura
Ok. It is a security reason. I was thinking about. I am Drupalist. Let say I have 6 browse button (eg. img01, img02, img03, img04, img05, img06) I hide all except the first. The user click first browse button and make a choice. So I Can hide the first button (with label and everything else) c

[jQuery] Validate a Children

2007-04-04 Thread Mario Moura
Hi I have two markups

[jQuery] Re: Validate a Children

2007-04-04 Thread Mario Moura
Almost there but semantic is wrong: If (($("#markup2").children().get().length > 0) AND ($("#markup1").children().get().length == 0)) $("#markup1").append($("#markup2").children().get(1)).show(); FALSE; Should I insert into a function? Regards mac

[jQuery] Litebox

2007-04-13 Thread Mario Moura
Hi How can I add caption in Litebox? How can I setup the position of controls? I see the new feature auto-advance slide show but I need autoplay how can I do this with JQuery? So when my page open litebox start immediately. Regards macm

[jQuery] Find a element - Basic issue

2007-04-27 Thread Mario Moura
Hi Folks My DOM is something like this services Products I am trying find the option that have selected="selected" of course is very random in many inputs. I tried a lot of things but nothing works. $($("#edit-taxonomy-1").children().get()).contains("selected") $($("#edit-taxonomy-1").childre

[jQuery] Re: Find a element - Basic issue

2007-04-27 Thread Mario Moura
Folks Thanks a lot, now I can find my element Mario 2007/4/27, Karl Swedberg <[EMAIL PROTECTED]>: Hi Mario, I think what you're looking for is the ":selected" pseudo-class. Try this: $('#edit-taxonomy-1 :selected') To get its value, add .val() To get its i

[jQuery] A simple Comparison

2007-04-30 Thread Mario Moura
ve result or else do another thing if I havent. (I know do that) But comparison always return false in both cases. What is missing? Is it a bug? Regards Mario

[jQuery] Re: A simple Comparison

2007-04-30 Thread Mario Moura
Ok Done If someone is looking for this: $(".field_image03']").children().is(".imagefield-edit-image-row"); return true or false Thanks for all Mario 2007/4/30, Mario Moura <[EMAIL PROTECTED]>: Hi Folks I am trying a simple Comparison. IF ($('.fi

[jQuery] AJAX .load() Can I set web place to my script?

2007-07-25 Thread Mario Moura
Hi Folks Now I am tasting Jquery AJAX My BIG problem is $("#myID").load("/mysite/myCustomDir/MyOtherPlace/myscript.php"); Yes I can run my php file. Excelent! but How can I set to this file to run in http://localhost/mysite/mydir/myplace? In other word I would like to say to my server hey! I

[jQuery] Re: AJAX .load() Can I set web place to my script?

2007-07-25 Thread Mario Moura
an see if this work could be a good, fast and easy way to implement AJAX and many CMS will love. But could be a crazy idea. If is forgive me and sorry. Regards Mario 2007/7/25, Rob Desbois <[EMAIL PROTECTED]>: Mario, I don't understand - are you wishing to change the working director

[jQuery] switch between two class - Basic Issue

2007-07-25 Thread Mario Moura
Hi Folks I am trying switch between two class Is it possible? $(document).ready(function(){ $(".collapsible .collapsed").click(function(){ $(this).removeClass().addClass("collapsibleopen"); }); $("collapsibleopen").click(function(){ $(this).removeClass().addClass("colla

[jQuery] Re: switch between two class - Basic Issue

2007-07-25 Thread Mario Moura
$(this).removeClass().addClass("collapsible collapsed"); }); }); thanks Regards Mario 2007/7/25, Eric C <[EMAIL PROTECTED]>: shouldn't your line: $("collapsibleopen").click(function(){ be $(".collapsibleopen").click(function(){ ? On Jul 25

[jQuery] Re: switch between two class - Basic Issue

2007-07-25 Thread Mario Moura
psed classes so I cant change all at the same time. Ideas? So when I use your idea my All "tree" open and if I click again all close. Works fine in main root. Can I set in $(this) to apply this JQuery only in the real clicked "element"? I am trying some XPath Selectors. Co

[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() { $($(this).addClass("selected")).animate(

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

2007-07-28 Thread Mario Moura
d sliding and complete the box. (when mouseover) and slideout after. Nice effect with flash.or animated gif But with Jquery is more fun! Ideas? Regards Mario 2007/7/28, Mitchell Waite <[EMAIL PROTECTED]>: > > You could use the Interface Elements plug-in and the effect SlideInRight.

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

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

[jQuery] Drag and Drop links

2007-08-02 Thread Mario Moura
didnt work. Ideas? My input is a simple text field (one line) so just paste the first line (Href) This feature is very simple but very useful for many web app. Regards Mario Moura

[jQuery] Re: Allowing a .click() function to occur as many times as needed in tandem with .load() ?

2007-08-03 Thread Mario Moura
(now with class vote_for_selected) to run the other code you now want it to run when clicked, is to remove (unbind) Element A's current click function (the stuff below) and to assign (bind) a new click function with other the code." Regards Mario Moura 2007/7/30, oliver &l

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

2007-08-07 Thread Mario Moura
). 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

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

2007-08-09 Thread Mario Moura
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] 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 pr

[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"), } Re

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

2007-08-14 Thread Mario Moura
show to my user him 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 St

[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 "in

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

2007-08-16 Thread Mario Moura
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, inclu

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

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

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

[jQuery] Re: Dynamic Form Validation?

2007-08-22 Thread Mario Moura
ude id="attach-button" from Validation? Because $("#myform").validate(); already declared. My Form is: Regards Mario 2007/8/18, SeViR <[EMAIL PROTECTED]>: > > > ValidationAide, that I think, is in the same direction of Validation > plugin or jQuer

[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. &g

[jQuery] Re: Dynamic Form Validation?

2007-08-23 Thread Mario Moura
ach(function(){ $(this).bind("click", function(){ $("#node-form")[0].submit( function() { $("#attach-button").unbind(); } );

[jQuery] Re: Dynamic Form Validation?

2007-08-24 Thread Mario Moura
ut this. But anyway 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: { > >

[jQuery] Re: Dynamic Form Validation?

2007-08-24 Thread Mario Moura
o you understand? Like I said I am not sure about this. Regards Mario 2007/8/24, Jörn Zaefferer <[EMAIL PROTECTED]>: > > > Mario Moura schrieb: > > SeViR > > > > Thanks I will try ASAP. > > > > I dont know if this make sense, I am just thinking. >

[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] 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] 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 m

[jQuery] Webmaster Remove false plugin from JQuery

2007-09-04 Thread Mario Moura
y soon... If I made a mistake my apologize 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(){ > $(th

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

[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] 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] Protect images

2009-06-24 Thread Mario Soto
Any ideas? 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; width:775px;

[jQuery] Re: Protect images

2009-06-25 Thread Mario Soto
for a watermark... > > You could also use javascript canvas but that does not work in IE > without a plugin > > On Jun 24, 1:49 pm, Mario Soto 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

[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] Documentation of datatype map

2007-11-30 Thread Mario Wolff
#x27;key[]':["foo","bar"]} in jquery, would be: $_GET['key'][0]="foo"; $_GET['key'][1]="bar"; in PHP. Maybe that hint is useful for someone or get's included to the documentation. Regards, Mario Wolff

[jQuery] Ajax ie7 $.post

2007-12-03 Thread Mario Moura
); }); }); }); I tested$("#submit").each(function(){ $(this).bind("click", 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

[jQuery] Documentation of datatype map

2007-12-04 Thread Mario Wolff
#x27;key[]':["foo","bar"]} in jquery, would be: $_GET['key'][0]="foo"; $_GET['key'][0]="bar"; in PHP. Maybe that hint is useful for someone or get's included to the documentation. Regards, Mario Wolff

[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

[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 My script is // prepare the form when the DOM is ready $(document).ready

[jQuery] Share my trick to Deserialized the response of JQuery Forms

2007-12-11 Thread Mario Moura
p file and deserialized the response $(data).attr("title") $(data).attr("image") you can use xml, json but I think text is fast. Hope be useful Regards Mario Moura macm

[jQuery] Re: Using jQuery to track advert clicks

2007-12-11 Thread Mario Moura
to Jquery. Gstats is GNU General Public License (GPL). I didnt study yet, like I said. But seem to be a good solution. So I think that when the browser try read the the server can get the parameters. without AJAX! (I guess!) Regards Mario Moura macm 2007/12/11, Chris Hardy <[EMAIL PROTECTED

[jQuery] Share my trick to debugger Jquery with FireBug

2007-12-13 Thread Mario Moura
s with varaibles to turn our job easy? Exist a "best pratice" to create variables in Javascript world? Hope be useful Regards Mario Moura macm

[jQuery] Jquery Forms - On the Fly

2007-12-13 Thread Mario Moura
Jquery can't run the event like: $("#OnTheFly").ajaxForm({ success: 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
} }); Please let me know if is fine and if I can 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"

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

2007-12-14 Thread Mario Moura
uot;type": "POST", "url": " foo2.php", "data": data, "dataType": "json", "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
",}); or $.ajax({"type": "POST", "url": "foo2.php "}); or $.ajax({"type": "POST", "url": "foo3.php ",}); But at this moment. I think is not possible. But could be a good improve. Did you understand? Regards Mario M

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

2007-12-14 Thread Mario Moura
OM I prefer check by function. 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 func

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

2007-12-14 Thread Mario Moura
/ do stuff with data; } }); $("#target").ajaxSuccess(function(request, settings){ $(function() { if (check1 == "something") { $(this).append(check1); } }) }); Ideas how can I fix "

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

2007-12-15 Thread Mario Moura
is into this object "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]>: > > > O

[jQuery] AutoExec

2007-05-08 Thread Mario Moura
ot;something"}); }); My JQuery.js is fine Is it possible? Regards Mario

[jQuery] $("img").attr("title", "${this.src}");

2007-05-09 Thread Mario Moura
em').siblings().get(1)).text() in firebug console I receive "my target text" but when I try insert into $("img").attr("title", "${...} I receive full expression "$($('#myid...text()" What is missing? Mario

[jQuery] Re: $("img").attr("title", "${this.src}");

2007-05-09 Thread Mario Moura
Ok I found here: http://www.visualjquery.com attr(key, value) ---> Example But fortunately I found my mistake: Will work like this $($("#myid//img").get(0)).attr("title", $($('#myid/.markup02/div/.field-item').siblings().get(0)).text()); Without ${...} Reg

[jQuery] Re: $("img").attr("title", "${this.src}");

2007-05-09 Thread Mario Moura
Now I see you John Resig. I feel honored talk with you. Congratulations and tanks for all. Regards Mario 2007/5/9, Mario Moura <[EMAIL PROTECTED]>: Ok I found here: http://www.visualjquery.com attr(key, value) ---> Example But fortunately I found my mistake: Will work

[jQuery] SlideShow Interface

2007-05-09 Thread Mario Moura
change", "alert('Hello');"); So when .slideshowCaption change should alert hello. But again nothing happen. What is missing? tips? Regards Mario

[jQuery] Re: SlideShow Interface

2007-05-09 Thread Mario Moura
tr("href") $(".slideshowCaption").wrap($("a").contains($(".slideshowCaption ").text()).clone().empty()); }; }); Please who can help me rewrite this function to JQuery? Regards Mario 2007/5/9, Mario Moura <[EMAIL PROTECTED]>: Hi Folks Everbody probably

[jQuery] click - Basic issue

2007-05-09 Thread Mario Moura
Hi all I am trying $("p").click( function() { alert("Hello"); } ); but I would like open in same window a page(link) like http://localhost/home How can I do that? I can only receive popups with click() function Regards Mario

[jQuery] Re: click - Basic issue

2007-05-09 Thread Mario Moura
pen($($("a").contains($(".slideshowCaption ").text()).clone().empty()).attr("href"), "_self"); } ); */ by Mario Moura So you just need have tag with my href. Hope be useful to who looking for same objective. Regards Mario 2007/5/9, Aaron Heimlich <

[jQuery] Re: click - Basic issue

2007-05-10 Thread Mario Moura
w.mydomain"; with /mydir/myref into window.open Do you know How Can I do this? Regards Mario 2007/5/10, Klaus Hartl <[EMAIL PROTECTED]>: Mario Moura wrote: > Thanks, > > Works like a charm. Now I finished what I was looking for. > > I was working to inser

[jQuery] Re: click - Basic issue

2007-05-10 Thread Mario Moura
home/admin Crazy bug! I trying find something but if an expert could be explain what is going on I will be glad. Regards Mario 2007/5/10, Mario Moura <[EMAIL PROTECTED]>: Thanks Klaus You are right. Now I have another problem. $($("a").contains($(".slideshowCaption&quo

[jQuery] Re: click - Basic issue

2007-05-10 Thread Mario Moura
Done Fixed with last Jquery version? Thanks Jquery Team! Regards Mario 2007/5/10, Mario Moura <[EMAIL PROTECTED]>: Ok I did window.open("http://localhost"; + ($($("a").contains($(".slideshowCaption").text()).clone().empty()).attr("href"))

[jQuery] Suggestion - A | B | C | - Navigation container

2007-05-11 Thread Mario Moura
Hi Folks This email is a suggest to a new plugin. Is it possible from a list create a A/B/C Navigation container? A | B | C | ... Accessible Travel Assisted Living ... If is possible please let me know, If not feel free to use it. Regards Mario

[jQuery] Re: Suggestion - A | B | C | - Navigation container

2007-05-12 Thread Mario Moura
Amazing, Thanks a lot, should be in Jquery Plugins page, Regards Mario 2007/5/12, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]>: thanks Bill, Like any piece of new code, there are bound to be bugs... click works better here than toggle, so : http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd";> htt

[jQuery] Re: Suggestion - A | B | C | - Navigation container

2007-05-13 Thread Mario Moura
> > On May 13, 2:10 am, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote: > > Thanks Mario, I put it up in the plugins directory of the svn.http://jqueryjs.googlecode.com/svn/trunk/plugins/letters/ > > > > Instead of html() perhaps text() would be better as it wouldn&#x

  1   2   >