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
Post a Comment