I have a custom button that calls the saveRow function. I want to put a url specific to the click of the button, but the url parameter must not be right. Here is the code to my custom button:
send = "<input name='send' class='tweetbuttons' id='tbuttonSend"+cl+
"' type='button' value='Send' "+
"onclick=jQuery('#list2').saveRow("+cl+",function(){alert('made_it_here')},item_send.php,{submitType:send}); /><br />";
While watching the Console in FireBug, I see an error: "item_send is not defined". I could not find any examples for the url parameter, and I tried putting my url in a variable. Any ideas?