Pues cuesta entender:
Pero alomejor esto te inspira:
Código PHP:
$('.insertar').click(function() {
var href = $(this).attr('href');
$('#dialog_insertar').dialog( "open" );
});
Se me ocurre más fácil hacer esto (OJO que creo que tenías las variable smal concatenadas. yo te pongo las constantes 5 y 4 para numero y día. pero tu cambialo por variables):
Código PHP:
<td><a class="insertar" href="index.php?numero='.$numero[$i].'&dia='.$_SESSION["agendaDia"].' data-numero="5" data-dia="4">Insertar</a></td>
Entonces ya podrás hacer:
Código PHP:
$('.insertar').click(function() {
var numero = $(this).data('numero');
var dia = $(this).data('dia');
$('#dialog_insertar').dialog( "open" );