[jQuery] Re: selectable + anchor not working

2009-02-27 Thread RotinPain
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 rotinpain@gmail.com wrote: 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

[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 atest/a is a link, and a name=test/a is an anchor ;) Are you using the latest versions of jquery/ui ? [code] html head script type=text/javascript

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

[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

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

2009-02-21 Thread RotinPain
, mkmanning michaell...@gmail.com 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 rotinpain@gmail.com wrote: After searching the web with no answer, I really need some help

[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 assign the categories Id number (like $catid) in the Id attribute

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

2008-10-22 Thread RotinPain
, Flavio333 [EMAIL PROTECTED] wrote: I tried what you said but it does not work... now both links go to the same page when clicked... RotinPain wrote: 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

[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

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

[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

[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

[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 steps)