Una pregunta, donde tengo que poner el campo
style en el html o en el ajax?.
ajax.php
Código PHP:
Ver original 'id_aviso' => $row['id_aviso'],
'telefonos' => $row['telefonos'],
'name' => $row['name'],
'apellidos' => $row['apellidos'],
'localidad' => $row['localidad'],
'style' => 'background-color:red;'
);
index.html
Código HTML:
Ver original <table width="100%" id="data" class="table-dg-grid" > <tr bgcolor=#DFEBFF id=t70 ondblclick='coloreaf(70,1)' onMouseOver='coloreamosin(70,1)' onMouseOut='coloreamosout(70,1)'>
js.js
Código Javascript
:
Ver originalhtml_user += '<tr ondblclick="pulsar(this, ' + *String.fromCharCode(39) + item.id_aviso + String.fromCharCode(39) *+ ');" >';
html_user += '<td ><input name="demo" type="radio" value="' + item.id_aviso + '"/></td>';
html_user += '<td>'+item.id_aviso+'</td>';
html_user += '<td>'+item.telefonos+'</td>';
html_user += '<td>'+item.name+' '+item.apellidos+'</td>';
html_user += '<td>'+item.localidad+'</td>';
html_user += '</tr>';