Let\'s say you have a .click() call. What code could you write inside of that .click() call so that each time you click the selected element, you c
.click()
$('#togglep').on('click', function(){ $(this).text(function(st1,st2){ if (st2=='MARKO'){return 'POLO'}; return 'MARKO' }) })