[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] 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 > > 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 wrote: > > > Awesome, thanks John. So UI 1.7 sh

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

2009-02-06 Thread Mario Moura
x27;continue' ) { $('#tabs').tabs('select',2); } } }); return false; } ); Regards macm 2009/2/6 Mario Moura > Hi James > > Not yet, but thanks. > > if I find a solution I will post here. >

[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 > > How about, instead of: > x = this.id; > > try: > x = $(this).attr('id'); > > On Feb 6, 1:22 am, Mario Moura wrote: > > Hi Folks > > > &

[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 As you can see if I submit #myForm I will go to next tab $("#tabs").tabs("select",2); Bu

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

2008-09-25 Thread Mario Moura
$("#out").click(function(){ >$('form').submit(); >return false; > }); > > }); > > > On Sep 25, 11:40 am, "Mario Moura" <[EMAIL PROTECTED]> wrote: > > Object Oriented / PHP5 - Possible BUG with Jquery >

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

2008-09-25 Thread Mario Moura
Object Oriented / PHP5 - Possible BUG with Jquery Hi Folks I was creating a simple singleton class (but I tested with others Desing Patterns) with php like this: class header { static private $instance = false; private function js() { $(document).ready(function() { $("#ou

[jQuery] Re: "this" - Basic question

2008-09-05 Thread Mario Moura
ct the div.w child element > .remove()// remove it > .end() // go back to the cloned element > .html() // and get its HTML > ); > > (We'll see how much of that formatting survives posting...) > > -Mike > >

[jQuery] "this" - Basic question

2008-09-05 Thread Mario Moura
Hi Folks I have: $(".tr").each(function(i){ $(this).bind("click", function(event){ var tr = $(this).html(); . My html is my text please! I dont want this children I am trying select only "my text please!" without children(). I tried .remove() .not(".w") .not("div.w") and a lot

[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] 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-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
",}); 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] 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: 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] 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] 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] 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 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: 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] 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] 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] 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: 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] Webmaster Remove false plugin from JQuery

2007-09-04 Thread Mario Moura
Hi Folks I dont know if is fake but I tried find this guy in our forum and I cant find. I tried find something in the link provided and nothing about JQuery or even about plugin "Custom Borders" It is in http://docs.jquery.com/Plugins *Custom Borders

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

[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
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] Re: Dynamic Form Validation?

2007-08-24 Thread Mario Moura
SeViR Thanks I will try ASAP. I dont know if this make sense, I am just thinking. but the plugin core shouldnt indicate type="submit" or should avoid it because in this situation could bring problems with ajax and others "submit buttons" into the main form. I am not sure about this. But anyway

[jQuery] Re: Dynamic Form Validation?

2007-08-23 Thread Mario Moura
return false; }); }); Ideas? Regards Mario 2007/8/23, SeViR <[EMAIL PROTECTED]>: > > > Mario Moura escribió: > > Hi SeVir and Folks > > > > > > My form have a ajax button. Ajax button always is type="submit" so I > > tested

[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

[jQuery] Re: Dynamic Form Validation?

2007-08-22 Thread Mario Moura
dation of the fields (on change input) I like it, it > is the next feature for jQuery.YAV :-P > I like much the links pointing the error fields of ValidationAide, maybe > this plugin need more flexibility, > but anyway is a good job :-) > > Mario Moura escribió: > > Hi > >

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

2007-08-18 Thread Mario Moura
--- > *From:* jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] *On > Behalf Of *Mario Moura > *Sent:* Friday, August 17, 2007 2:58 PM > *To:* jquery-en@googlegroups.com > *Subject:* [jQuery] Re: Jquery can show Images from file:///C:? > > Hi > > Wow. Looks great. >

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

2007-08-17 Thread Mario Moura
some time ago, but after trying some workarounds and > > reading a lot of browser docs I noticed this was an horrible and really bad > > practice in web development. > > > > So we actually can't make an "image preview" before sending data to the > >

[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: Plugin: frameReady updated. Now with better docs and demos ;)

2007-08-16 Thread Mario Moura
Hi Daemach Thanks for frameReady is amazing. I am trying integrate with http://tinymce.moxiecode.com/ To have a common example I will use the image button of http://wiki.moxiecode.com/examples/tinymce/installation_example_05.php To avoid problems with other library I did: jQuery.

[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: 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] 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: 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] Re: Please fix TreeView bassistance - Please DEV to not stable plugins

2007-08-09 Thread Mario Moura
<[EMAIL PROTECTED]>: > > why do u say it doesn't work in IE. It seems to work fine for me. Granted, > i just saw the demo. > > -GTG > > On 8/9/07, Mario Moura < [EMAIL PROTECTED]> wrote: > > > > Hi Folks > > > > TreeView is amazing plug

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

2007-08-09 Thread Mario Moura
Hi Folks TreeView is amazing plugin from http://bassistance.de/jquery-plugins/jquery-plugin-treeview/ But unfortunately just work on FF Please Jörn Zaefferer and Myles Angell do you have a date to fix Treeview? to work with ie6 and ie7? Please John Resig ask to plugin providers make plugins to

[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] Jquery can show Images from file:///C:?

2007-08-07 Thread Mario Moura
Hi folks What I am trying is show an image into my browser with this tag into my browser. Is it possible? or is a security lock from browsers? I am using $.post() So I could send the path that user choice C:/Users/example.JPG to my php and return But isnt working because browsers cant show

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

[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: Sliding an image into a box - Little animation

2007-07-28 Thread Mario Moura
> > > > *From:* jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] *On > Behalf Of *Mario Moura > *Sent:* Saturday, July 28, 2007 6:41 AM > *To:* jquery-en@googlegroups.com > *Subject:* [jQuery] Sliding an image into a box - Little animation > > > > Hi Folks >

[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: switch between two class - Basic Issue

2007-07-25 Thread Mario Moura
ow is more of what you're after... $('.collapsible .collapsed .collapsibleopen').bind('click', function() { $(this).toggleClass('collapsible').toggleClass('collapsed').toggleClass('collapsibleopen'); }); Cheers, -js On 7/25/07, Mari

[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] 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: AJAX .load() Can I set web place to my script?

2007-07-25 Thread Mario Moura
y for PHP? If so the function chdir() can help you. If that's not what you're asking I don't get it, can you rephrase the question, perhaps let us know what you're trying to do with this? --rob On 7/25/07, Mario Moura <[EMAIL PROTECTED]> wrote: > > Hi Folks &

[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: TreeView with "Checkbox Tree"

2007-07-23 Thread Mario Moura
Other good example http://www.scbr.com/docs/products/dhtmlxTree/ Regards 2007/6/26, Jörn Zaefferer <[EMAIL PROTECTED]>: Mario Moura wrote: > Yes, Jörn > > Will be a good addon to treeview. > > About Christof email if just add the checkboxes to the -Tag will > work

[jQuery] Re: Remove Column from a table

2007-07-13 Thread Mario Moura
Sean Thanks a lot, works like a charm. Regards Mario Moura 2007/7/13, Sean Catchpole <[EMAIL PROTECTED]>: $('#myid table').find('th:first-child, td:first-child' ).remove(); ~Sean -- Mário Alberto Chaves Moura [EMAIL PROTECTED] 31-9157-6000

[jQuery] Remove Column from a table

2007-07-12 Thread Mario Moura
Hi Folks I need remove first a last column from a table. To head I used $('#myid table thead tr > th:first').remove() $('#myid table thead tr > th:last').remove() Works fine but to body I am trying without sucess. I tried this but how you can see will delete only first and last cell. $('#myi

[jQuery] Re: Strange behavior

2007-07-12 Thread Mario Moura
Sorry It is done The problem it is I am using Jquery tabs Plugin and my function should be run before this plugin Thanks anyway Regards Mario 2007/7/12, Mario Moura <[EMAIL PROTECTED]>: Hi Folks I wrote: $("#fragment-2 .pager .pager-list > a").attr("href",

[jQuery] Strange behavior

2007-07-12 Thread Mario Moura
Hi Folks I wrote: $("#fragment-2 .pager .pager-list > a").attr("href", function() {return this.href + ('#fragment-2')}); When I insert into my Firefox Console and run works fine. When I tried insert into my pages this Jquery function didnt run. I tried everything (after Jquery script, after an

[jQuery] Re: TreeView with "Checkbox Tree"

2007-06-26 Thread Mario Moura
Yes, Jörn Will be a good addon to treeview. About Christof email if just add the checkboxes to the -Tag will work? Should I re-create my tree from my select form using or Regards Mario 2007/6/25, Jörn Zaefferer <[EMAIL PROTECTED]>: Christof Donat wrote: >> I want insert Checkbox in

[jQuery] TreeView with "Checkbox Tree"

2007-06-25 Thread Mario Moura
Hi Folks I am looking for this: http://www.blueshoes.org/_bsJavascript/components/tree/examples/example3.html I want insert Checkbox in my treeview. Is it possible with JQuery? Regards Mário Moura

[jQuery] Re: Remove DOM siblings after current item

2007-06-05 Thread Mario Moura
Not tested $().remove($('#appendExtraAppointments').children()); or $().remove($('#appendExtraAppointments').siblings()); Not sure, Mario 2007/6/5, [EMAIL PROTECTED] <[EMAIL PROTECTED]>: I have the following DOM: blah 1 blah 2 blah 3 blah 4 I would like to remove the li elements afte

[jQuery] Re: How to remove links from Interface Slideshow?

2007-06-04 Thread Mario Moura
Try use CSS in the class or find the container of 123456 and use $('.nameofcontainer').hide() Mario 2007/6/4, Rick Faircloth <[EMAIL PROTECTED] >: Hi, all... I'm using the Eyecon Interface Slideshow plug-in. I'm using it simply to display images that fade one to another without wanting the

[jQuery] Re: How to remove links from Interface Slideshow?

2007-06-04 Thread Mario Moura
Try use CSS in the class or ID or find the container of 123456 and use $('.nameofcontainer').hide() 2007/6/4, Rick Faircloth <[EMAIL PROTECTED]>: Hi, all... I'm using the Eyecon Interface Slideshow plug-in. I'm using it simply to display images that fade one to another without wanting th

[jQuery] Re: I asked out of curiosity.

2007-06-03 Thread Mario Moura
x27;).prepend(this.parents('.myclass-siblings').prev().text()); On 6/3/07, Mario Moura <[EMAIL PROTECTED]> wrote: > Hi Folks > > I have a group of div's with same class. > > MY TEXT 1 > > > <=TO HERE (1) > >

[jQuery] I asked out of curiosity.

2007-06-03 Thread Mario Moura
Hi Folks I have a group of div's with same class. MY TEXT 1 <=TO HERE (1) MY TEXT 2 <=TO HERE (2) MY TEXT 3 <=TO HERE (3) I know do this to one group something like this: $('.children1').prepend($('.myclass').text(

[jQuery] How override default "Destination URL" to Media or Flash plugin?

2007-06-01 Thread Mario Moura
Hi Folks I have some .swf files. Sometimes I need change "Destination URL" for the same swf file I am not specialist in flash so isnt my plan edit each one. Some files have "default Destination URL" others are in blank. How can I do that with jQuery Media Plugin or jQuery Flash Plugin? I saw

[jQuery] How override default "Destination URL" to media or flash plugin?

2007-06-01 Thread Mario Moura
Hi Folks I have some .swf files. Sometimes I need change "Destination URL" for the same swf file I am not specialist in flash so isnt my plan edit each one. Some files have "default Destination URL" others are in blank. How can I do that with jQuery Media Plugin or jQuery Flash Plugin? I saw

[jQuery] Re: [ANN] jQuery Media Plugin

2007-06-01 Thread Mario Moura
Hi, I have a .swf file Jquery Pluging works fine but how can I insert a link in my swf file? I tried flashvars, attrs, params, link, href. Something like this: jQuery(document).ready(function() { $('.media').media( { width: 300, height:250 , autoplay: true, 1) flashvars: { getURL:'h

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

2007-05-18 Thread Mario Moura
s Mario 2007/5/13, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]>: the latest version works against the actual text, instead of the html inside the I.E. It's fixed, thanks to Sam's notice! On 5/13/07, Mario Moura <[EMAIL PROTECTED]> wrote: > > Hi > > If the list have an anchor ta

[jQuery] Star Rating System

2007-05-17 Thread Mario Moura
Hi Folks I would like to suggest a improvement in this amazing plugin http://php.scripts.psu.edu/rja171/widgets/rating.php look http://www.imdb.com/title/tt0413300/ You have User Rating: 7.4/10 average . This average could be in a container for example Select 1 2 . 7 10 So two things

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

2007-05-13 Thread Mario Moura
Ok. Done with: var lis = $('ul/a').siblings() I dont know if is the best way but is working. Thanks again Jake. Regards Mario 2007/5/13, Mario Moura <[EMAIL PROTECTED]>: Hi If the list have an anchor tag Jake letters.js cant work The result will be A to all itens. My

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

2007-05-13 Thread Mario Moura
Hi If the list have an anchor tag Jake letters.js cant work The result will be A to all itens. My hunch is A from : Good catch Sam, it's been updated over at google. http://jqueryjs.googlecode.com/svn/trunk/plugins/letters/ On 5/13/07, Sam Collett <[EMAIL PROTECTED]> wrote: > > > On May 13,

[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";> http://www.w3.org/199

[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: 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] 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
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-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] 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: 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] SlideShow Interface

2007-05-09 Thread Mario Moura
Hi Folks Everbody probably know SlideShow from http://interface.eyecon.ro/demos/slideshow.html It is nice but dont have a way to href the caption to something. I am trying but change function dont do what I hope, so probably I am in wrong way. $($(".slideshowCaption ").text()).change($(".slide

[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] Re: $("img").attr("title", "${this.src}");

2007-05-09 Thread Mario Moura
ards Mario 2007/5/9, John Resig <[EMAIL PROTECTED]>: Mario - ${...} doesn't, currently, exist in jQuery. Did you find an example somewhere that showed it as working? (It needs to be fixed.) --John On 5/9/07, Mario Moura <[EMAIL PROTECTED]> wrote: > Hi Folks > >

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

2007-05-09 Thread Mario Moura
Hi Folks I am trying $("img").attr("title", "${this.src}"); So : $("img").attr("title", "${$($('#myid/.markup02/div/.field-item').siblings().get(1)).text()}"); If I insert my function $($('#myid/.markup02/div/.field-item').siblings().get(1)).text() in firebug console I receive "my target text"

[jQuery] AutoExec

2007-05-08 Thread Mario Moura
Hi Folks How can I force my JQuery script run? After my Html page is loaded I have some scripts in the middle of DOM (like I need) (because is generated from some db_query) $(document).ready(function(){ $("markup02").append("something"); $("img").attr({title:"something"}); }); My JQuery.js i

[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] A simple Comparison

2007-04-30 Thread Mario Moura
Hi Folks I am trying a simple Comparison. IF ($('.field_image04').find(".imagefield-edit-image-row") == null ) When I test in differents .class (.field_image04, .field_image03..) I receive empty, null results or a random text result. What I need is just do if have result or else do anothe

[jQuery] Re: Find a element - Basic issue

2007-04-27 Thread Mario Moura
nner text, add .text() --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Apr 27, 2007, at 1:59 PM, Mario Moura wrote: Hi Folks My DOM is something like this services Products I am trying find the option that have selected="selected" of course

[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] 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] 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] Validate a Children

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

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