That is just a cursor, the cursor can be changed using css style. Do you want to disable text selecting or just make the cursor remain as the familiar arrow it ordinarily is when not over text? You can do both but, the cursor is done with style, the no select text with a script. There are a number of ways to change the cursor using style. The approach I would take is to create a class definition:
Code:
<style type="text/css">
.noIbar {
cursor:default;
}
</style>
Put the above in the head of your document and wherever you want the cursor to be the arrow when it normally would be the ibar select text cursor, add the class definition to the containing element:
HTML Code:
<p class="noIbar">This text will have an arrow cursor</p>
or:
HTML Code:
<div class="noIbar">More text with an arrow cursor</div>
Bookmarks