As a possibly more mnemonic way to display code properly, you can use the BBCode tags [code] and [/code]. (Note: These tags had to be surrounded by backticks to make them display in this message.) Regular html tags <code> and </code> won't work.
For example this:
[code]
$(function(){
$("#li_resume_checkbox label").text("Save my progress and resume later TEST");
});
[/code]
will display this:
$(function(){
$("#li_resume_checkbox label").text("Save my progress and resume later TEST");
});
While this:
<code>
$(function(){
$("#li_resume_checkbox label").text("Save my progress and resume later TEST");
});
</code>
will display this way:
<code>
$(function(){
$("#li_resume_checkbox label").text("Save my progress and resume later TEST");
});
</code>