I am trying to insert > character to button in jquery. I need a button like this "Continue >".
jQuery("#hello").dialog({
buttons: {
Continue>: function() {
jQuery( this ).dialog( "close" );
}
}
});
I tried Continue>:, Continue>: Continue>:, but with no success. Please help me