Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

46
votes
9answers
50k views

Dynamically retrieve Html element (X,Y) position with JavaScript

I want to know how to get X and Y postion of HTML elements such as img, div in JavaScript. thanks
15
votes
8answers
376 views

how to avoid position: fixed from staying on the screen when vertical scrolling?

I asked this question which worked great for making text (top links) forced to the right after scrolling The issue is one on page, when i scroll vertically, the top links stay on the top of the page ...
14
votes
4answers
7k views

CSS: How to have position:absolute div inside a position:relative div not be cropped by an overflow:hidden on a container

I have 3 levels of div: (In green below) A top level div with overflow: hidden. This is because I want some content (not shown here) inside that box to cropped if it exceeds the size of the box. (In ...
13
votes
2answers
1k views

Android Market, Search results position Mystery

How is an app's position in the Android Market search results determined? Is it as mysterious and complex as Google Web search results? We obviously don't want to change any words in our app's title ...
12
votes
3answers
7k views

Android Web App : Position:fixed broken?

I'm in the process of developping a Web Application for mobiles. I went with web applications because to me it seems a winning situation having to develop one application that could run also on iPhone ...
11
votes
3answers
3k views

Using Position Relative/Absolute within a TD?

I have the following code: <td style="position: relative; min-height: 60px; vertical-align: top;"> Contents of table cell, variable height, could be more than 60px; <div ...
11
votes
3answers
13k views

Mouse position using jQuery outside of events

I need to get a hold of the absolute mouse position / coordinates (X and Y) using (preferably) jQuery like in this tutorial but outside of any JavaScript event. Thank you.
10
votes
2answers
419 views

Check if geo-location has been spoofed

I want to make sure the location received by the LocationListener is a "real" one and doesn't come from a spoofed source (I.e the Application Location Spoofer). I don't care about "but the user ...
10
votes
8answers
678 views

Implement this layout using CSS float:left and float:right, or using CSS margin-left and position:absolute?

I want to place some annotations to the left of a topic using HTML and CSS (for example the 'status' and 'author' annotations shown in the following mockup/image): I prefer CSS instead of a ...
10
votes
2answers
780 views

git alias with positional parameters (git foo aaa bbb ccc => foo aaa && bar bbb && baz ccc)

Basically I'm trying to alias: git files 9fa3 ...to execute the command: git diff --name-status 9fa3^ 9fa3 but git doesn't appear to pass positional parameters to the alias command. I have ...
9
votes
1answer
67 views

Adding cookies to drag and drop

I'm creating an drag and drop plugin and I thought to make it a little unique i would add a cookies feature to save the position of the dragged elements. I'm currently using the following code for ...
9
votes
4answers
674 views

Position badge over corner of image automatically

I have a layout where images "float" within a certain area. The layout looks like this: The source like this: <div class="free_tile"> <a class="img_container canonical" ...
8
votes
1answer
138 views

position legend in first plot of facet

I would like to put my plot legend inside the plot, inside the first plot of a facet. Here is some example code: df=data.frame( x=runif(10), y=runif(10), facet=rep(c("a","b"),5), ...
8
votes
5answers
152 views

Hover box with (vertically and horizontal) centered text

I made a on-hover-information-box for an image-mosaic for a client. When the person hovers the image (different orientations, so its flexible sized) he gets another div above it with some ...
8
votes
4answers
3k views

Simulate position:fixed in jQuery

I have a header that is larger than the width of the page so that I can't use position:fixed to set him on top of the page, because I absolutely need to be able to scroll horizontally. I don't think ...
8
votes
1answer
2k views

Get position of the “viewport” in mobile safari?

Is there a way to determine the position of the "viewport" in mobile safari on a web page? Like x, y, w, h pixel positions of what the phone is currently seeing on the page?
8
votes
7answers
17k views

Dialog box not positions center screen

I have a jQuery dialog box that is meant to position in the middle. However, it seems slightly off-center vertically. Here is the code: $('#add_box').dialog({ autoOpen: true', width: 300, ...
7
votes
3answers
2k views

How to get the start and end points of selection in text area?

i want to get the cursor start and end position of a selected range in a text-field or text-area. i tried lot of functions in various forums. but when the last character of the selection is a new ...
7
votes
3answers
1k views

Getting the position of the element in a list when it's drag/dropped (ui.sortable)

I have a sortable list like this one: http://jqueryui.com/demos/sortable Is it possible to get the start and end position of the element in the list, when it has been moved? I'm talking about their ...
6
votes
7answers
183 views

How to find absolute or relative position of last letter inside an input field?

Maybe this is a strange question. Please, check Bellow you will understand. Empty input type text, width=200px : [____________________________] Filled input type text, width=200px : ...
6
votes
4answers
836 views

Position in an list? (Python)

I will check if a word exists in a list. How can I show the position of this word?
6
votes
1answer
4k views

c# datatable insert column at position 0

does anyone know the best way to insert a column in a datatable at position 0?
5
votes
4answers
152 views

Split String at possition in C#

I have a date stamp (020920111422) and I wan't to split it to day = 02, month = 09, year = 2011, hour = 14, and minute = 22 Is there a "split string at position" method in C#?
5
votes
1answer
84 views

Finding list of positions in multidimensional structure (array)

Suppose I have a simple multidimensional structure, like this one: somestr<-array(sample.int(2, 120, replace=TRUE), dim=c(4,5,6)) I'm looking for all positions in the structure (in this case, an ...
5
votes
2answers
124 views

SQL - how to determine which position/order/count my selected record is in?

Imagine I have a table: ID field1 field2 --- ------- ------ 111 1 11113 112 1 11114 113 1 44321 114 1 49339 115 2 ...
5
votes
2answers
248 views

jquery tooltip IE problem

I am using jquery tooltip in area which is reloaded with ajax. So I bind the js for tooltip and all work fine for most browser but not for IE 7 and 8. There is a problem with position and it give me ...
5
votes
4answers
7k views

How to set iPhone UI View z index?

I want to move one view on top of another, how can I know the z index of the view, and how to move on to top? Thank you.
5
votes
1answer
204 views

How to get indexes of all occurrences of a pattern in a string

string = "Jack and Jill went up the hill to fetch a pail of water. Jack fell down and broke his crown. And Jill came tumbling after. " d = string.match(/(jack|jill)/i) # -> MatchData "Jill" ...
5
votes
2answers
6k views

Cocoa: Getting the current mouse position on the screen

I need to get the mouse position on the screen on a Mac using Xcode. I have some code that supposedly does that but i always returns x and y as 0: void queryPointer() { NSPoint mouseLoc; ...
5
votes
3answers
1k views

jQuery - Animate element that has children absolutely positioned outside it - blinking

Forgive me if this has been addressed before, couldn't find anything. I am animating a content bar that that has children absolutely positioned outside it (via negative margins). The idea is that ...
4
votes
3answers
37 views

finding the two surrounding elements in a list when click inside the container of a list

Suppose I have a container containing a list of items, so the markup looks something like <div class="container"> <div class="list-item" id="item-1"> ....</div> <div ...
4
votes
2answers
74 views

Calculating a Future Position

I've got this information about an entity: Lat/Long Position Heading (In Radians) Speed (In knots) How do I calculate where the entities lat/long position will be at an arbitrary point in time (or ...
4
votes
2answers
930 views

Get selected text position

Currently a I'm getting the selected text in the browser doing this: window.getSelection(); Now I need to show a tooltip above that text when pressing a custom key(note that the mouse could not be ...
4
votes
2answers
194 views

gVim - show position marker of matched search terms

Is there functionality, plugin or ways in gVim to show markers of matched search terms, which point out their rough positions in the buffer? For example, when search "foo" in the buffer, the feature ...
4
votes
2answers
2k views

vertical align center image in fixed size div

I have a div which is 145px X 145px. I have an img inside this dive. The img could be of any size (longest side being 130px). I would like the image to be centered vertically in the div. Everything ...
4
votes
1answer
651 views

scrollTop jquery, scrolling to div with id?

So this is the current code I have $(document).ready(function() { $('.abouta').click(function(){ $('html, body').animate({scrollTop:308}, 'slow'); return false; }); ...
4
votes
2answers
181 views

Saving and loading the caret position in a textarea via JavaScript

I'm looking for a method to save and load the caret position in a textarea in a web-application, so that when the user re-opens the web-application they are automatically taken back to the position ...
4
votes
4answers
2k views

CALayerInvalidGeometry exception during HTML5 video play (iOS 4.2 Problem)

After updating to the iOS 4.2 SDK, i receive the following exception in my app: Terminating app due to uncaught exception 'CALayerInvalidGeometry', reason: 'CALayer position contains NaN: [nan 22]' ...
4
votes
1answer
446 views

How can I adjust the position of the x axis labels of a MS Chart in .NET?

I have a chart that I'm generating on the fly through a generic handler. I've got the data loaded and by default it looks like this: If I adjust the crossing I get the desired effect I'm looking ...
4
votes
5answers
83 views

How would you position these images?

http://elektrikhost.com/ You see the penguins thats over the header on the columns? I'm trying to get them to be over the header and list. I'm wondering what would you do? use position absolute, or ...
4
votes
1answer
299 views

Text-Indent vs Position for SEO

What's the best way to hide a text element and replace it with an image while still maintaining good SEO. I've seen negative text-indent, but I prefer absolute positioning with negative top. So what ...
4
votes
2answers
202 views

Is there a way to determine that a .a or .so library has been compiled as position indepenent code?

I am getting a linking error when compiling the numpy library against lapack indicating I need to compile lapack with -fPIC. I thought I had done just that. Is there a way to determine that the ...
4
votes
3answers
673 views

How to fake mouse cursor position in Windows Forms C#?

I have this Windows Forms application with a simple balloon tooltip. Depending on the application's window location on the desktop and the mouse cursor location, the balloon 'tip' (or balloon pointing ...
4
votes
2answers
2k views

How to keep background image on bottom left even scrolling

I was wondering if there is a way to keep my background image on bottom left all the time even if the user scroll the browser. My current css can make the image in the bottom of the browser when the ...
4
votes
2answers
1k views

WPF Separator position

I'm using a Separator to draw a vertical line inside a Border. At first this was ok because the line needed to be centered, but now I need to position it at a custom x-position from the left border. ...
4
votes
6answers
1k views

Find position of a node within a nodeset using xpath

After playing around with position() in vain I was googling around for a solution and arrived at this older stackoverflow question which almost describes my problem. The difference is that the ...
4
votes
6answers
4k views

How to set cursor position in C on linux?

how can I set the mouse cursor position in an X window using a C program under Linux? thanks :) (like setcursorpos() in WIN) EDIT: I've tried this code, but doesn't work: #include <curses.h> ...
4
votes
1answer
1k views

How to find position number of a certain child element in a parent element using jQuery

I have a div containing several other divs containing an image. It looks smth like this <div id="parentHldr"> <div class="imgHldr"><img src="foo/bar.png" id="1"></div> ...
4
votes
4answers
2k views

2d game : fire at a moving target by predicting intersection of projectile and unit

Okay, this all takes place in a nice and simple 2D world... :) Suppose I have a static object A at position Apos, and a linearly moving object B at Bpos with bVelocity, and an ammo round with ...
4
votes
5answers
4k views

jQuery position problem with Chrome

When I alert the value .position().left, it returns 0 on Chrome. With other browsers it returns the actual number. Why does this happen?

1 2 3 4 5 25