// <nowiki>
$( document ).ready( function (){
createBtn.on( 'click', function() {
nameResp = name.getValue().trim(),
imageResp = image.getValue().trim(),
majorResp = major.getValue().trim();
countryResp = country.getValue().trim(),
wikiContent = '{| class="wikitable" style="border: 5px ridge grey; float:right;" \n|-\n|';
try { wikiContent += "[[File:"+ /File:(.+\.\w{3})/i.exec(imageResp)[1] +"|300px]]\n"; } catch(err) { wikiContent += "[[File:Oalogo.jpg|300px]]\n"; } wikiContent += "|-\n|\n";
wikiContent += ";Name: " + nameResp + "\n";
wikiContent += ";School (Cohort): " + schoolAndcohortResp + "\n";
}
});
// </nowiki>