jQuery dialog and PHP grid -


i have implemented jquery dialogbox within php grid every time open same dialog box, pulls record box?

i declared dialog box , used following:

$("a.pop").each(function(i){      $(this).click(function(e){       e.preventdefault();         $("#details").dialog('open');       });    }); 

any appreciated....

hope appreciated ... lol please note code not tested please let me know in case

$("a.pop").click(function(e){      e.preventdefault();         $("#details").load($(this).attr('href')).dialog('open');         }); 

Comments

Popular posts from this blog

linux - Mailx and Gmail nss config dir -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -