Can't Stop Text Selection When Dragging Object

Jun 16, 2009

I have 2 example/test pages of the issue I'm experiencing. For now, I'm just trying to get it to work in a standards-compliant browser, so view in something other than ie:

[URL]

If you click and drag the orange bar up or down, it works fine on the first page. However, on the 2nd page, if you click the orange bar and drag down too fast, it starts selecting text and then the bar gets all wacky.

My suspicion is that the bar gets messed up because the text is being selected. That occurs because if you scroll too fast, the cursor goes off the orange slider bar and starts selecting. If you scroll very slowly so that the cursor doesn't go off the bar it seems to scroll fine.

I've tried everything I can think of to stop the text from being selected, but I'm not 100% sure if that's the cause of the problem or just a symptom of something else (maybe bubbling or something?). I tried returning false on every mouse event on the lower panel, tried creating an absolutely-positioned mask above the text in the lower panel, tried removing all text from the lower panel, tried stopPropagation(), etc., but nothing seems to work.

If I set the mousedown/over/move on the lower panel to return false, it prevents selecting text normally by clicking the mouse & dragging, but it will STILL select the text if I click on the slider bar and drag down.

View 8 Replies


ADVERTISEMENT

JQuery :: Stop Dragging When Cursor Outside Window?

Aug 19, 2011

I have a div that is draggable using:

<script type="text/javascript">
$( init );
function init() {

[code]....

View 6 Replies View Related

Dragging Cursor Highlights Text

Jul 23, 2005

If I drag the cursor across a page, text and other elements get
selected. Is there anyway to prevent that from happening?

View 1 Replies View Related

JQuery :: Get Id(or Text) Of A Div That Is Dropped After Dragging?

Jan 26, 2011

I am working on implementing a dynamic drag-and-drop sortable jquery to php/mysql function in my app. I am following the tutorial here: [URL] I've got most of it figured out. The only problem is that it is not updating the mysql table correctly. It takes the orderID of the div that was dropped and sets it equal to the spot where it was dropped. As you can guess, that is a problem, because there is already an item with that orderID. So I need a way to grab the ID or even the text of the div that was dropped and pass it to that PHP script. And then I could reorder all the orderID's between the one grabbed and the spot where it was dropped.

Here is the existing Jquery code:

$(function() {
$("#eventBoxes").sortable({ opacity: 0.6, cursor: 'move', update: function() {
var order = $(this).sortable("serialize") + '&action=updateRecordsListings';
$.post("updateDB.php", order, function(theResponse){

[Code]....

View 2 Replies View Related

Clicking And Dragging A Link To A Text Field?

Feb 1, 2010

Is it possible to click and drag a link (either text or image) to a text field (or something similar) and have it display the URL of the link?

View 1 Replies View Related

Selection Object

Jul 23, 2005

I am trying to achieve in Netscape what I can achieve in IE by
document.selection.empty(). This will remove the highlighting created by
Ctrl A or by dragging over text on a page. I can access the selection object
in NS using window.getSelection() but I have not found any way to clear it
so as to remove the highlighting. I have tried the collapse() method but
that does not do it.

View 3 Replies View Related

Way To Prevent Tab Text Highlight / Disable Tab Text Selection

Apr 21, 2011

Here's a sample form:

Code:
<form action="#" method="post">
Name:<br />

[code]...

View 3 Replies View Related

Prevent Tab Text Highlight / Disable Tab Text Selection?

Apr 21, 2011

Here's a sample form:

Code:
<form action="#" method="post">
Name:<br />
<input type="text" name="name" value="your name" /><br />

[Code].....

When you tab to a text input, the value gets highlighted. How can it be disabled?

View 7 Replies View Related

Possible To Prevent Tab Text Highlight / Disable Tab Text Selection?

Apr 21, 2011

Here's a sample form:

<form action="#" method="post">
Name:<br />
<input type="text" name="name" value="your name" /><br />

[code]....

View 1 Replies View Related

How Do I Stop Someone From Resizing The Web Text

Sep 22, 2006

Im using dreamweaver and I am wondering if there is a way or some sort of code I can stop the user from resizing text with the cntrl + mouse wheel ? Ive got CSS style sheets attached to my site but dont know what to do next?

View 7 Replies View Related

Stop Hiding Text On Hover?

Nov 29, 2009

Im playing around with some JQuery and have a small problem with my menu. I want the text to always be visible, be on hover and not on hover. Currently, the text is only visible when I hover the <li> item. Check it out at http://cooper.zxq.netBelow is my code using to produce the menu.

<html>
<head>
<script src="jquery-1.3.1.min.js" type="text/javascript" ></script>

[code]....

View 3 Replies View Related

Add Text To Current Selection

May 14, 2009

I have a function that will add text to the end of my text box. I want to be able to have the text added where it is currently selected.

My current code is :

View 1 Replies View Related

Wrapping A Selection With Text?

Jun 11, 2011

I am working on code to wrap BBCodes around a user selection, then leave the selection selected for possibly adding more BBCodes around the same selection.My problem is that there seems to be several different ways to do it and I can't figure out which one is "the best".Now, I can't use the "standard" way of doing this because I am working with TinyMCE. I know there are countless examples on how to do this with textareas... that is NOT what I need.TinyMCE can give me a selection RANGE, a selection NODE or a selection OBJECT. Note that if I use TinyMCE's range, it internally "normalizes" the range to be a standard W3C range, regardless of browser.I've created a new range, extracted the selection from the user's range, created elements for the open and close BBCode, inserted the elements into the range and finally set the user's selection to the new range. Works fine.

I also tried taking the selection node (which is an element), then simply used "innerHTML" to add the opening and closing tags, then set the node to the modified node. Works fine.I've also used the editor's built in "selection.getContent()" and "selection.setContent()" calls and THIS also works.I've even tried using the DOM "surroundContents()" function, then used a regex to change the < and > into [ and ]. Freaky... but that works too.So, my dilemma is... which method should I use???To recap, here's what I want (blue represents selected text):

This is a test sentence. (user selected some text)
This is a test sentence. (text is wrapped and remains selected).
This is a test sentence. (user clicked another bbcode button).

[code]....

View 6 Replies View Related

Get The Selection Of A Text With The Function?

Mar 27, 2010

im trying to get the selection of a text with the javascript function : window.getSelection();.

The problem is that the result is not like i hope. For example with a structure like this:

<div class="one" id="one">
Im one div
<strong class="two" id="two"> this is strong </strong>
Rest of div

[Code]....

View 1 Replies View Related

Stop Script From Resizing The Text On Page?

Mar 3, 2011

This script is making all of my text larger.

Code:

View 1 Replies View Related

Jquery :: Stop IE Text Hover Priority

Jul 5, 2011

I'm using jQuery to create a hover effect when a user hovers over a div. This is fine, as usual all browsers except IE do what I need of them. Inside my divs I have some text and to get the whole div area to be the link I have simply placed an anchor (last in the div in html) and abs pos'd it, given it a z-index and displayed it as block so that it is now the whole div as a link. But because of the text, IE is giving priority to the text so when I hover the div, if I hover into the text area it is taking the hovered stated off of the div. I need to stop IE bringing the text to the front. This happens in all versions of IE inc 9

View 6 Replies View Related

Stop Numbers Getting Added To A Text Field?

May 31, 2011

the program works fine but i want a way to make sure that the name field just accepts text and no numerical values

the program is here:

function submitit() {
if ((document.form1.name.value == "") || (document.form1.email.value == "")) {
alert("Please fill in all fields");
}

[Code].....

View 4 Replies View Related

Get Text Selection In FireFox/Mozilla?

Sep 25, 2005

Can anyone give me a Javascript snippet that will get the currently selected
text in a TEXTAREA element? The code I have only works in IE.

View 1 Replies View Related

Unwanted Text Selection In MSIE?

Oct 13, 2011

I made up a little test program to grab the mouse X and Y coordinates and plan to use it to allow users to resize a window.

Anyway, the problem I'm having is that in MSIE-8, the mouse down and movement causes text to be selected (which I don't want).

Here's is a screenshot from MSIE:

[URL]

And here is the test program live online: [URL]

Notice that the text in the box is selected... I don't want that to happen.

Of course, it works just fine in Firefox, but not MSIE.

View 4 Replies View Related

Display Text From Checkbox Selection?

Sep 25, 2010

Is there a way to display text from selecting checkboxes such that different combinations have different texts?

View 2 Replies View Related

Disable Text Selection And Print Key In IE7

Feb 21, 2007

I'm trying to disable the text selection and print-key functions on a couple page of my web site using the code below:

View 4 Replies View Related

Set Selection On Input Type=text In Ie?

Nov 12, 2010

I want to set selection on HTML input type=text.

Here's the code for FF and Chrome:

<input type=text value="01234567890" id=1>
<input type=submit onClick="selectIt()" >
<script>
selectIt=function (){

[Code].....

View 2 Replies View Related

JQuery :: Make The Text Stop Sliding To The Right On Hover?

Jun 30, 2009

how can i make the text stop sliding to the right on hover?

View 2 Replies View Related

JQuery :: Clear Selection Of Text On Ul Element

Sep 18, 2009

I am trying to get/set only text of list only element text value. But for some reason I can not select it in clear way. List something like:

<ul>
<li id="myid"> Here text that I want to modify
<ul>
<li id="dfdf">i don't want modify this</li>
<li id="dfdf">i don't want modify this</li>
[Code]...

View 1 Replies View Related

JQuery :: Prevent Text Selection In Button?

Apr 15, 2010

If you have an anchor and apply the button widget, text selection in the button is still possible.

View 1 Replies View Related

Menu Selection Populates Text Field

May 1, 2009

I have the following code I picked up which tries to fill in a text field with data depending on a user's menu item selection. I place this code in the header:

Code:
var colors = new Array();
colors["apple"] = "red";
colors["grape"] = "purple";
colors["milk"] = "white";
colors["cheese"] = "yellow";
colors["chicken"] = "white";
colors["beef"] = "red"; .....

var groups = new Array();
groups["apple"] = "fruit";
groups["grape"] = "fruit";
groups["milk"] = "diary";
groups["cheese"] = "diary";
groups["chicken"] = "meat";
groups["beef"] = "meat";

function printColorAndGroup(){
var value = document.getElementByName('food').options[document.getElementByName('food').selectedIndex].value;
document.getElementByName('food_group').value = groups[text];
document.getElementByName('food_color').value = colors[text];
}

I then use the following html in the body:
Code:
Food:
<select name="food" onchange="printColorAndGroup()">
<option>apple</option>
<option>grape</option>
<option>milk</option>
<option>cheese</option>
<option>chicken</option>
<option>beef</option>
</select>

Group:
<input type="text" name="food_group">
Color:
<input type="text" name="food_color">
But when I run this nothing happens...
Here's the page [URL]. None of the code above is colored... looks like I'm using the wrong tags here. Which tags should I use to post this stuff correctly?

View 12 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved