Forum Post: RE: row span in a tables data cell (form layout)

Status
Not open for further replies.
S

Santosh Patel

Guest
This will help understanding Javascrip Strings www.w3schools.com/.../js_strings.asp Your last snippet is fine just that it is being called before the said content is ever loaded on the page. To execute stuff after the complete page has loaded use jquery onready function. script $(document).ready(function() { $('#rbi_F_contactRole').parent().html(" div td class='rbs_rightLabel3' id='rbi_L_contactRole' Contact Role /td td class='rbs_leftDataCol3' id='rbi_F_contactRole' rowspan='6' select name='contactRole' tabindex='29' multiple='true' size='6' option value='11565' Billing & Finance /option option value='11566' Send Licences /option option value='11567' Send Leads To /option option value='11568' Secure Portal Admin /option option value='11569' TC Technician /option option value='11570' Beta Tester /option /select /td /div "); }); /script

Continue reading...
 
Status
Not open for further replies.
Top