Вход Регистрация
Файл: static/plugins/base/js/jquery-fieldselection.js
Строк: 85
<?php
/*
 * jQuery plugin: fieldSelection - v0.1.0 - last change: 2006-12-16
 * (c) 2006 Alex Brem <alex@0xab.cd> - http://blog.0xab.cd
 */

(function() {

    var 
fieldSelection = {

        
getSelection: function() {

            var 
this.jquery this[0] : this;

            return (

                
/* mozilla / dom 3.0 */
                
('selectionStart' in e && function() {
                    var 
e.selectionEnd e.selectionStart;
                    return { 
starte.selectionStartende.selectionEndlengthltexte.value.substr(e.selectionStartl) };
                }) ||

                
/* exploder */
                
(document.selection && function() {

                    
e.focus();

                    var 
document.selection.createRange();
                    if (
== null) {
                        return { 
start0ende.value.lengthlength}
                    }

                    var 
re e.createTextRange();
                    var 
rc re.duplicate();
                    
re.moveToBookmark(r.getBookmark());
                    
rc.setEndPoint('EndToStart're);

                    return { 
startrc.text.lengthendrc.text.length r.text.lengthlengthr.text.lengthtextr.text };
                }) ||

                
/* browser not supported */
                
function() {
                    return { 
start0ende.value.lengthlength};
                }

            )();

        },

        
replaceSelection: function() {

            var 
this.jquery this[0] : this;
            var 
text arguments[0] || '';

            return (

                
/* mozilla / dom 3.0 */
                
('selectionStart' in e && function() {
                    
e.value e.value.substr(0e.selectionStart) + text e.value.substr(e.selectionEnde.value.length);
                    return 
this;
                }) ||

                
/* exploder */
                
(document.selection && function() {
                    
e.focus();
                    
document.selection.createRange().text text;
                    return 
this;
                }) ||

                
/* browser not supported */
                
function() {
                    
e.value += text;
                    return 
this;
                }

            )();

        }

    };

    
jQuery.each(fieldSelection, function(i) { jQuery.fn[i] = this; });

})();
?>
Онлайн: 2
Реклама