[jQuery] Re: selectable + anchor not working

2009-02-27 Thread RotinPain
n and still doesnt work in Firefox 3 > > I am using different jquery than yours. I am using jquery UI 1.6rc6 > > and jquery-1.3.2 > > > On Feb 24, 12:51 pm, RotinPain wrote: > > > > I've just tested your code coz i'm curious and it's working with FF

[jQuery] Re: selectable + anchor not working

2009-02-23 Thread RotinPain
I've just tested your code coz i'm curious and it's working with FF 3.0, or IE7...the code i tested is below. btw I would say test is a link, and is an anchor ;) Are you using the latest versions of jquery/ui ? [code] $(document).ready(function(){ $('.column').selectable();

[jQuery] Re: e-mail validation

2009-02-22 Thread RotinPain
Hi, i'm not using this plugin but you seems right about the problem. I can just invite you with posting in the appropriate plugin "bug" list for making the author aware of the problem. taken from the plugin authors page: [quote] Please post bug reports and other contributions (enhancements, featu

[jQuery] Re: problem finding all atributes, attributes length, retrieve all attributes

2009-02-21 Thread RotinPain
!! On 21 fév, 20:15, mkmanning wrote: > Wow, I just uploaded a simple plugin that does > this:http://plugins.jquery.com/project/getAttributesand then saw your > post. > > On Feb 21, 9:07 am, RotinPain wrote: > > > > > After searching the web with no answer, I re

[jQuery] problem finding all atributes, attributes length, retrieve all attributes

2009-02-21 Thread RotinPain
After searching the web with no answer, I really need some help about attributes in jquery Here's the plan: I want to retrieve ALL the attributes from a tag for applying them to another tag. Problem#1: i don't know how many attributes the tag will possess. Problem#2: i don't know what attributes

[jQuery] Re: can someone please help with dynamic links problem?

2008-10-23 Thread RotinPain
you're welcome! On Oct 22, 7:45 pm, Flavio333 <[EMAIL PROTECTED]> wrote: > Thank You so much, after playing around with it ... it works!!! > Thank You SO SO Much!!! > > > > > > RotinPain wrote: > > > Sure, how i could miss that! > > > I would

[jQuery] Re: can someone please help with dynamic links problem?

2008-10-22 Thread RotinPain
}//function );//bind }//function );//each }); <!-- #myobj { background-color: #CC; height: 300px; width: 500px; } --> But you can have a look at ricardobeat link ;) On 21 oct, 20:57, Flavio333 <[EMAIL PROTECTED]> wrote: &g

[jQuery] Re: can someone please help with dynamic links problem?

2008-10-21 Thread RotinPain
the problem is quite simple i think, all your links have the same id (generate2) And the jquery function is attached to a link with this id (generate2) So only 1 link will be responding to the function. You need to use each() to attach an event to each links. Like $("#generate2").each ( functi

[jQuery] Re: call a php function with onclick

2008-10-21 Thread RotinPain
Here's a something based on links class name, the php code is in your hand ;) [HTML PAGE] [JQUERY CODE] //add an action to each A with class="friends", //the action is based on the id of each A and passed as variable (see DATA: ) $("a.friends").each ( function () { $( this ).bind (

[jQuery] Re: call a php function with onclick

2008-10-21 Thread RotinPain
What I did for having php executed at onClick event is using Ajax. You must store your functions into an external php file. Then use the jquery ajax methods to load, execute and receive back the result of your php code without leaving the caller page. Process will be invisible to users (the page

[jQuery] Re: JQuery Selector and Java Script Variable

2008-10-20 Thread RotinPain
@ricardobeat: Great! thank you for your help. I see that there are plenty of manners that can be used to retrieve the type of an element, now it's to choose the good one ;) . I'll use the ternary one for my code but I will also keep in mind the other functions you gave here for using them in my ne

[jQuery] Re: JQuery Selector and Java Script Variable

2008-10-19 Thread RotinPain
@ Balazs Endresz: You're right, and Ricardobeat has given the good answer ;) Even if i'm working with Firebug I didn't notice this behavior between value and text. @Remy: yeah! I couldn't manage to put xml in jsbin. I followed the ajax video without no success. Any view where i pasted the xml (JS

[jQuery] Re: JQuery Selector and Java Script Variable

2008-10-18 Thread RotinPain
I met a similar issue, but i can determine it happens only with Firefox (3.0.3). The variable selector seems to be the problem. I explained the whole thing here:http://jsbin.com/aciwi in short, $("[id='" + variableId + "']").text( variableValue ); won't always work with FF (it works in first ste