Seeking guidance on a URL issue that I am facing.
Whenever I click the source link, it adds a pound sign to the URL. How can I prevent this from happening? Can someone assist me in identifying the necessary changes required in my jQuery or HTML code?
Below is the HTML snippet:
<li><label for="tutorial-summary">Tutorial Summary: <a href="#" class="code-editor">source</a> <a href="#" class="text-editor">wysiwyg</a></label></li>
<li><textarea rows="10" cols="20" name="summary" id="tutorial-summary"></textarea></li>
And here is the corresponding jQuery code:
$(document).ready(function() {
$('.code-editor').click(function(){
$('#tutorial-content').ckeditorGet().destroy();
return false;
});
});