Guys is it possible to assign Double click event to A HREF which is dynamically generated , to which i need to assign a user function with parameter that will differ for each a HREF.kindly let me know.

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

you can use class instead of id and do what Matt said.

$('.Class').live('click',function(event)
{
  myFunc($(this));
});
link|improve this answer
you mean '.Class' right? – Matt Jan 27 '11 at 16:52
#<dynamic id> or just class – Suresh Sankar Jan 27 '11 at 16:53
@Matt. OOps. Yes, you're right. – Thiago Guttierre Jan 27 '11 at 16:54
@Suresh, just class. add a 'class="something"' inside the a "father" tag. Then, on Jquery, you select the 'a' tags doing.. $(".class a"). It's a way to do that. Or just put a class on 'a' tag. – Thiago Guttierre Jan 27 '11 at 16:58
feedback
$('.generated').live('click',function(event)
{
  //determine params here

  myFunc(params);
});

For every 'a' tag that ends up on your page, when it is clicked, it will call myFunc with the jQuery version of itself as the paramater

link|improve this answer
each A href has an id , i do not want to assign the function for all link ,only to dynamically generated ones , and function parameters changes for each links. – Suresh Sankar Jan 27 '11 at 16:45
feedback

Try this function. This is a simple JavaScript. Using this method we can assign a function dynamically on an html element.

var funcRef = new Function("testFunction()"); document.getElementById("elementid").onclick=funcRef;

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.