Positioning DIV At Point Containing White Circle

Jul 20, 2010

I've created a page with an image of a man where a user is able to click on an area and a div is positioned at that point containing a white circle. This code works in all browsers except IE 6 where it creates a duplicate white circle beneath the one which is placed in the correct location. How to get rid of this second circle? The circle is essentially a div with a background image assigned.

Code:
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="ImageClick.aspx.vb" Inherits="ImageClick" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "[URL]">
<html xmlns="[URL]" >
<head runat="server">
<title>Image Click</title>
<script type="text/javascript" language="javascript" src="JQuery.js"></script>
<script language="javascript" type="text/javascript">
window.onload = Init .....

View 5 Replies


ADVERTISEMENT

Positioning - Moving Objects - Make The 'pivot' Point In The Centre Of The Image

Feb 22, 2009

I have some moving objects & they are using the top left spot of the object to 'hold' or 'pivot' off. how i make the 'pivot' point in the centre of the image. I think it is somewhere in this section of code:

[Code]...

View 1 Replies View Related

Circle Tracing

Feb 25, 2006

I am trying to create a circle with different images.

var j = 0;
var degree30 = Math.PI/6;
var r_angle = 0;

function rotate(idy){
var x = parseInt(Math.cos(r_angle)*100);
var y = parseInt(Math.sin(r_angle)*100);

document.getElementById(idy).style.left = (x + 300);
document.getElementById(idy).style.top = (y + 186);
j++;
(r_angle < degree30 * 11) ? r_angle = degree30 * j : r_angle = 0;

( j < 12) ? setTimeout("rotate('reduit'+ j)", 400) : stop();
}

View 9 Replies View Related

Circle All The ChildNodes

May 20, 2005

I wanna get all the text nodes of the children of an element. The goal is to get an array with all the textNodes in each cell of a table, without any other nodes that might ocure whithin that cell (<p>, <br> etc...)

I mean if:
<td>12</td>
<td>1<p>23<b>34</b>5</p>6</td>
I need:
var txt = new Array()
txt[0] = &#3912;'
txt[1] = ?'

Now I had to circle through all the childNodes to extract all the text nodes. I have build a function, but something is wrong in the code, and I don't sense what. I need soime fresh eyes, any ideeas? Where's the mistake?:

<script type="text/javascript">
function checkCell(){
var allC = document.getElementById('tab').getElementsByTagName('td');//cells' collection
var txt = new Array()
for(var i=0;i<allC.length;i++){
txt[i]=''
while(allC[i].hasChildNodes()){
var chC = allC[i].childNodes;
for(var j=0;j<chC.length;j++){
if(chC[j].nodeType==3){
txt[i]+=chC[j].data;
}
}
allC[i]=allC[i].childNodes;
}
}
alert(txt[1])
}
onload=checkCell;
</script>

View 8 Replies View Related

Svg Circle With Fixed Radius

May 13, 2006

Anyone know how to make an svg circle radius fixed (i.e. not affected
by transforms)? I tried adding px or cm, e.g. r=&#3915;px' but it just
generates an error.

View 3 Replies View Related

Rotating Circle Text

Jun 9, 2006

I want place custom text rotating around analogue clock.
Here is javascript that is clise to my task:

http://javascript.internet.com/time...trailclock.html

But it have a few unnecessary features which is difficult to alter.

i want:
1. replace week/year/days in external circle with my custom text: 'My
custom text'
2. I want to reduce a little rotation speed of this text. (no mouse
reaction speed)
3. I do not need mouse trail effect at all, i want fix clock in
required place.

There is another script, but it have no rotating text wheel around
clock:
http://www.dynamicdrive.com/dynamicindex6/analog.htm

Which from this scripts is more easy to adjust for my task and could
someone show me exact code?

View 2 Replies View Related

Making Circle Without Any Images.

Jun 8, 2006

I can make a rectangle without an image by using table. Can I make a circle without an image with your help?

View 6 Replies View Related

JQuery :: Canceling A Circle Callback?

Mar 2, 2010

quick example:

function endless(){
$("element").animate({left: '-=100'}, 1500);
$("element").slideToggle(500);

[code]....

View 4 Replies View Related

JQuery :: Move A Circle From One Row And Insert It Into Another?

Mar 5, 2011

I currently create a grid of svg circles made up of rows. I can animate a circle from one row moving into another row, sorted by some attribute value. But when I use a selector to fetch all circles within a row I get them ordered by when they were added to the underlying DOM.

Is there a way, if I created a group for each row, that when I move a circle from one row and insert it into another I actually remove the svg object from one group and insert in into the other so that it's correctly positioned in the underlying DOM?

View 4 Replies View Related

HTML5 Canvas - Fill Divided Circle

May 27, 2011

Picture:
Doing in html5 canvas, so JavaScript (was not sure where to post, but here I go...). Above is a link to picture that I need to do. It is clock-like. I will have to draw a circle, and two lines, from centre to according points on circle. That is not a problem, the thing I can not do is to fill upper and lower parts of circle that those two lines divide, so upper part of a circle should be e.g. red, and lower blue. (Plus, it would have to bi gradient, to look more appealing).

View 1 Replies View Related

JQuery :: AddClass Function On A SVG Circle Doesn't Work

Oct 7, 2010

i have the following test code in my html page

<div id="drawingArea">
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="700" height="400"> <circle id="example" cx="335.4999" cy="234.38927" r="8" style="cursor: move;" fill-opacity="0.1"></circle> </svg></div>

[Code].....

Iam using Raphael and add the same question in their google group too, but they said, its jquery specific. I think, jquery doesnt found my circle. Maybe different id - handling between SVG-specific and plain DOM elements?

View 3 Replies View Related

Rotating Menu - Making The Links In The Back Of The Circle

Feb 11, 2011

I came up with the idea of making the links in the back of the circle (i've got a total of 10 links), invisible and put a globe in the middle (as background) - making it look like the links in the back go behind the globe and comes back from behind it again. I've tried to do this myself with .this.style.invisibility="hidden";

[Code]...

View 1 Replies View Related

Point

Jul 23, 2005

Is there a method to get the x and the y coordinates where a user click in
the screen?

View 1 Replies View Related

White Space?

Mar 15, 2006

I am creating a class for all of my code snippets, using a formatted paragraph (and "word-wrap: pre") to keep formayting intact. The problem is that in keeping my HTML files formatted nicely, they are indented, and due to the "pre" formatting the indentation is kept. Code:

View 2 Replies View Related

Get A Point In A Image

May 26, 2006

How can I get the position in a image area in where I do clic?

If I have a jpeg image 400x500 and I do clic on 200x100 the script returns height=200
width=100

View 14 Replies View Related

Decimal Point

Sep 7, 2006

Can anyone please help/direct me to find/write a simple Javascript function to clean up a decimal point or a coma on a number.

For Example I need
10.000 to become 10000
or
10,000 to become 10000

View 6 Replies View Related

Removing All The White Spaces?

Dec 21, 2009

Why this code doesn't work? All I want to do is removing all the white spaces.

JavaScript
function validateForm(){
var postcode1 = (document.form1.textPostcode1.value).replace(/^s*|s*$/g, "");
if (postcode1 == "") {

[Code].....

View 2 Replies View Related

Dynamic Positioning

Jul 23, 2005

I have a rather annoying problem with Mac IE 5.2. I use a javascript
function to determine the x, y position of the upper left corner of
this image of the US. Since this image can be placed anywhere in the
browser, the x, y position is not always (0,0). I am also trying to
lay several dot images on top of this image so that when you click the
dot the user can find out more information about certain states. So I
determine the x, y position and add certain pixels so that the dots
will be placed in the correct places in relation to the US image.

This works well with PC's IE. However, when I open this in Mac IE, the
dots are either shifted too high up or too low in relation to the US
image. Strange thing is, when I resize the browser, the dots literally
jump to their correct places.

View 1 Replies View Related

Positioning Problem

Jul 20, 2005

I'm trying to create a menu in javascript. I've created the bitmaps with
text over the top of them. The problem i'm having is that the positions
aren't correct. If I wrap the code in PRE tags, then this fixes it. But
this seems to be a bit of a hack, as apposed to finding what the bug is.
I've included examples of the problem below:

View 6 Replies View Related

How To Positioning The Scrollbar

Nov 6, 2009

Is there some possibility with php to put the horizontal scroll bar of the web brwser into the center if the "width" of web page are bigger then the "width" of the web browser screen?So I don't need to scroll to right if I open the page, but the horizontal scroll bar will be positioned in the center.That code should do the same think like I when I take the scroll bar and put it in the center position, but this should be happen when I load the page automatically.

View 4 Replies View Related

DIV Positioning Without Using Absolute?

Oct 25, 2011

[URL]
<style>
div#back{
width:1000px;
height:1000px;
margin-left: auto;
margin-right: auto;
background-color:#096;
}div#topmenu{
width:400px;
height:35px;
position:relative;
top:5px;
left:595px;
background-color:#9F0;
}div#logopart{
width:950px;
height:70px;
position:relative;
top:0px;
left:50px;
background-color:#0FF;
}div#leftmenu{
width:100px;
height:400px;
position:relative;
top:0px;
left:0px;
background-color:#999;
}div#cont{
width:900px;
height:500px;
position:relative;
top:0px;
left:0px;
background-color:#FF6;
}</style>...
<div id=back>
<div id="topmenu">topmenu</div>
<div id="logopart">logopart</div>
<div style='display:inline;'>
<div id="leftmenu">leftmenu</div>
<div id="cont">cont</div>
</div></div>

How do I put "cont" div on the right of "leftmenu" without using "absolute"?? The screenshot was little bit cropped out and there is no problem on width.

View 4 Replies View Related

Positioning In Firefox And IE?

Mar 9, 2009

Take a look at the Firefox positioning and the disastrous positioning in IE and let me know what I need to do fix the div tag:

Code:
function areYouSure(){
var newDiv = document.createElement("div");

[code]....

View 1 Replies View Related

CSS Positioning With JAvascript

Apr 30, 2003

I was wondering if it is possible to set the positioning of an element in CSS? What I am looking to do, is have a set of 3 boxes on the right of the page and base the size of the boxes by %. Problem is, while I can position the first and third boxes relative to the top and bottom of the page, repectively, depending on the size of the browser, i can't firmly set the positioning for the middle box off of the top or bottom.

Ideally, I would like to use JS to determine the height of the first box (which is based on a % of the page size), and then set the top of the second box = the height of the first box + 5px for a buffer. Code:

View 1 Replies View Related

Positioning In IE7 And Protoype.js

May 6, 2007

I'm trying to write the code for an AJAX script. The goal is to let the visitor send a comment through a form (obviously). The form is inside a div that pops up when the visitor clicks on an "add a comment" link and when the form is submitted the result of the form processing apears inside the same div which resizes to fit the size of the result.

The problem I'm trying to solve is that although the resizing and the positioning of the div works for Firefox it doesn't for IE7. In IE7 it does the resizing but the positioning fails Code:

View 1 Replies View Related

Howto Point To A Textbox?

Jul 23, 2005

I just wondered how I can refer to the following two
textboxes in this form:

<FORM action="FormWrite.php" method="post" name="submitForm">
<INPUT NAME="inputValues[etunimi]" SIZE=40>
<INPUT NAME="inputValues[sukunimi]" SIZE=40>
<INPUT TYPE="button" onclick="javacscript:sendForm();"
VALUE="Lähetä">
</FORM>


the reason the [] signs are in the name is to get all the textboxes values
in one variable
when using a php script.

- But how can I refer to it with javascript? For example; I tried

alert(document.submitForm.inputValues[etunimi].value);

View 4 Replies View Related

Exclamation Point In Field Name

Jul 23, 2005

I'm using a third-party chat application. They require that form field
names be formatted "SESSIONVAR!FIELDNAME". The bang is creating
headaches when I try to write validation script. How can I handle this
format properly? I'm not sure how to escape the exclamation point
within my code.

View 2 Replies View Related







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