Skip to content

Instantly share code, notes, and snippets.

@swapnil-webonise
Created October 2, 2013 10:34
Show Gist options
  • Save swapnil-webonise/6791767 to your computer and use it in GitHub Desktop.
Save swapnil-webonise/6791767 to your computer and use it in GitHub Desktop.
Implementing Boiler Plate
function feedback_plans()
{
var feedback_plan_boiler=
'<table>'+
'<tr>'+
'<td><label>Stream</label></td><td><select id="comboStream"></select></td>'+
'<td><label>Year</label></td><td><select id="comboYear"></select></td>'+
'</tr>'+
'</table>';
feedback_plan_boiler+=
'<center>'+
'<div id="divPlanDetails" style="width:100%;">'+
'</div>'+
'</center>';
$('div#column2').html(feedback_plan_boiler);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment