Dragable Image Being Used As Link
Oct 27, 2009
I have some images that I want the user to be able to move around the page. So far, this script in the header allows me to do this:
var ie=document.all;
var nn6=document.getElementById&&!document.all;
var isdrag=false;
var x,y;
var dobj;
function movemouse(e){
if (isdrag){
dobj.style.left = nn6 ? tx + e.clientX - x : tx + event.clientX - x;
dobj.style.top = nn6 ? ty + e.clientY - y : ty + event.clientY - y;
return false;
} }
function selectmouse(e) {
var fobj = nn6 ? e.target : event.srcElement;
var topelement = nn6 ? "HTML" : "BODY";
while (fobj.tagName != topelement && fobj.className != "dragme"){
fobj = nn6 ? fobj.parentNode : fobj.parentElement;
}
if (fobj.className=="dragme"){
isdrag = true;
dobj = fobj;
tx = parseInt(dobj.style.left+0);
ty = parseInt(dobj.style.top+0);
x = nn6 ? e.clientX : event.clientX;
y = nn6 ? e.clientY : event.clientY;
document.onmousemove=movemouse;
return false;
}}
document.onmousedown=selectmouse;
document.onmouseup=new Function("isdrag=false");
The body has this:
<img src="images/balloons.gif" class="dragme">
Now, to be able to use this image as a link, I would have to find the displacement between the mousedown and mouseup coordinates. If the displacement is below say 10px, then the mouseup would bring them to another page. I also wanted to make it so that if the mouseup occurs in a certain area of the page, that the image would move itself to a certain spot.
View 9 Replies
ADVERTISEMENT
Mar 2, 2007
I was wondering if there any examples out there that create a Draggable ifram
that display another URL in it. In this iFRAME before loading the URL it
will display a progress bar once the url has loaded the progress bar will
disappear.
View 1 Replies
View Related
May 23, 2007
I'm really loving the user-friendlyness of sites that allow movable/drag-and-drop content in little containers that can be manipulated to their preferences.
E.g:
http://www.google.co.uk/ig?hl=en
http://www.start.com/3/
http://www.eurogamer.net/gamers
MSN Spaces/Live.com
...etc
I was wondering how to go about doing this - any useful tutorials/suggestions would be great, many thanks. Not too sure what to search for.
View 2 Replies
View Related
Oct 24, 2011
In my sortable, i have a placeholder element which says "Please drag somethign here". After the user has done that, it should disappear, but just, if the draged item was droped into that specific list. And that's my problem. I don't know, how to check, where the dragable was droped. :/ I couldn't find anything in the event object or docs but probably it's quite easy.Of course, i could save the state of the list and then check it or something like that but that sucks.Here's my current code, it just deletes the placeholder but even if you drop the dragale into nowhere.[URL] 2nd I didn't investigate this too much but since im opening a new thread...The html element i drag around, should get wraped with a tr abd td. How do i achieve that?
When having e.g:
<table id="x">
<tr>
<td>
[code]....
and i do $("#x").remove(); it seems to remove the content and the table element but not its td's and tr's, why?why is draggable->stop: triggered on page load?If i have e.g. stop: alert("hi")i'll get a alert hi. if i put it in an external function the same, but if i do $('.draggable table').draggable({disabled: true};); nothing happens on page load, like i'd expect. why?
View 1 Replies
View Related
Jun 24, 2010
Go to this site [url] then click on login in the upper right corner, and try to drag the div by click and dragging on the top of the div.
For some reason it works only when dragging to the right and up and down, but when you drag to the left, the mouse slowly gets out of the div.
The css of the login form is:
And the javascript for it is:
What i want is the same effect as if u would drag a windows application.
View 3 Replies
View Related
Dec 9, 2009
i want to bring image download link to download a single image using like
<a href="./images/sam.png">Download</a>
when i click the download link it need to download plz help how can i downloadcan finished
View 1 Replies
View Related
Sep 4, 2010
I am looking for a script that fades Text (description above and below a banner Banner) with Banners and hyperlink. A mouseoverstop would be very nice too. Here's an example of one of my Friendsbanners I would like to fade (all together there a 5 of these Friends Banners
<font face="verdana" font-weight="700" color="darkgreen">Some Topic above <p>
</p><a href="[URL]" target="_blank"><img src="[URL]" WIDTH="200" />
</a> Some Topc below</center>
View 2 Replies
View Related
Apr 13, 2011
I'm trying to create a switch image code that will allow the new image to be a link as well. In the list item where you'll see ('blue.jpg') if I try to make this an anchor tag - it breaks the code.
<head>
<script>
function switch1(div) {
if (document.getElementById('blue')) {
[code].....
View 6 Replies
View Related
Mar 16, 2010
On sorting out a drag&drop script. I'm a bit of a rookie with programming, so I found this script somewhere and I managed to implement it in my code...unfortunately now I need to slightly modify the code.
I have this drag&drop script that moves some images around the screen, but I'd like to assign an event - document.getElementById("XXXXX").onclick = blablabla - to each of those images.
The problem is that, of course, every time I click on the image to drag it around, this activates the link. With a doubleclick event everything works smooth, however it's a solution I don't quite like.
I was thinking about a way to control the code so that while the image moves the link is somehow "not active", but if the user simply clicks without dragging then it activates the .onclick function
I have the following piece of code in the head section of my page, which is the actual code for dragging the elements
function Browser() {
View 4 Replies
View Related
Sep 24, 2009
i am trying to add a Link dynamic to a and Image that i am creating dynamic too to a table, here is the code that i am using to add the image but i dont now how to add the link to the images.
Code:
var cell6 = row.insertCell(5);
var element6 = document.createElement("img");
[code].....
View 3 Replies
View Related
Sep 29, 2009
Basically I have an application which generates HTML using VB dll's. This makes the code generated un-changeable as the dll's are not to me modified in any way. What I need to do is get hold of a image element so that I can switch its SRC to dynamically change the image. GetElementById is out as the nearest I can get to it is the <a> tag surrounding the <img> tag, so my question is what's the easiest and most bomb proof method of accessing this element.
View 10 Replies
View Related
Jul 16, 2010
I have over 100 images I would like to display on their own page, but link to them from an index page.Rather than have over 100 seperate pages can anyone think of a way to link to the same page but call the required image. This is an over simplification of what i'd like to do:
<a href = 'index.html' = 1.jpg></a> - Will open index.html and show 1.jpg.
<a href = 'index.html' = 2.jpg></a> - Will open index.html and show 2.jpg.
View 4 Replies
View Related
Jan 26, 2011
I have a question and I think javascript is the way to go...So here's what im thinkingI have an image of half a quys face. When the mouse goes over it, the image should expand to reveal the whole face, when the image is clicked, it will act jst like a link.
View 6 Replies
View Related
Oct 4, 2010
I'm trying to use jQuery to trigger a light box for images contained in a hyperlink inside a content area.
<div id="contentcontainer">
<a href="www.site.com/image.jpg">
<img src="www.site.com/image_thumb.jpg" />
</a>
</div>
Is it possible for jQuery to detect the link above is to an image? to assign a class to it.
View 2 Replies
View Related
Feb 28, 2009
in the right direction on how this can be done, I got the idea from some ad company.http://mcstuff.co.uk/static/likethis.jpgOnce I hover over the link, the thing pops up.All I really want is that once someone hovers over a link, a small image pops up beside their cursor until they scroll off it.
View 3 Replies
View Related
Feb 28, 2010
I have a php page which uses the following javascript code to open another page (The users profile page) and alos carry over the userID (dUid)
var userProfileUrl = chatProfileUrl+dUid.replace(/_/gi,"");
document.getElementById('userdetails').innerHTML += "<span class='userinfo' onClick="window.open('"+userProfileUrl+"','"+dUid+"')"><img id='profile' style='cursor:pointer;vertical-align:middle;padding-top:4px;' src=images/zoom.png> View Profile</span></br>";
I wanted to add to the menu another image link so I copied the same coding, but I do not know where to place the URL target that I want opened. I know I want the userID (dUid) also to follow this link as well. If I want the coding below to act in the same manner as the coding above, but instead open a page called /gift.php, where do I set the Url?
document.getElementById('userdetails').innerHTML += "<span class='userinfo' onClick="window.open('"+userProfileUrl+"','"+dUid+"')"><img id='profile' style='cursor:pointer;vertical-align:middle;padding-top:4px;' src=images/gift.png> Send Gift</span></br>";
View 2 Replies
View Related
Dec 17, 2011
I am having an issue where I am using lightbox, however what is showing up is a text link "Request Email." I understand how to manipulate this text to say anything I want. However, I am having difficulty changing the text link to an image.
Instead of the text, I want to have an image (button) stored on my server [URL] be the link to click on instead of the text. It seems this would be easy to accomplish
<a id='anchor_LU8eKAvs2W' href='http://www.emailmeform.com/builder/form/LU8eKAvs2W'>Request Email!</a><script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script type="text/javascript">
[Code]....
View 7 Replies
View Related
Jun 7, 2007
This specific to the messages posted by members for various sections on this forum. when I read through the message text, and if the member has typed in some link of other site, on mouse over of this link i see small image of the link contents. I wanted to know how to do that? Are the images stored in the database and shown on mouse over or its something else.
View 9 Replies
View Related
Jul 22, 2009
I am using a javascript gallery plugin, Galleriffic, to display an image gallery. I am having an issue with it as when the image is clicked it keeps jumping back to the top of the page. The problem with this is that the thumbnails which are underneath the main image on the page aren't visible and the user must then scroll to see them.
Is there any way that I can change this so that the link on the image doesn't make the page jump back to the top? I don't have my version online but the website will show you the code that is being used.
View 8 Replies
View Related
Apr 5, 2010
I want a new image to show when the user mouses over each link. I prefer a jquery plugin. Does anyone have recommendations for me? I'm a newb when it comes to Javascript so the easier the better
View 3 Replies
View Related
Apr 6, 2004
I need a random JS script which stores a hyperlink around a designated image.
Let's say I've got a company website which offers various products, and on the front page I want a random image to appear of one of the products. When they click on that image, they are transfered to the page for that product. This means that the link and image has to correspond.
View 4 Replies
View Related
Aug 17, 2005
i've searched this forum before posting but didn't find a "clean" solution to my problem.
I have an image with a link on it:
Code:
<a href="#null" onClick="addValue('bold');"><img src="images/myimage.gif" title="Some text" alt="Some text" /></a>
which adds the value in a textarea in the same page via this function:
Code:
function addValue( val ) {
var tb = document.forms['valuesform'].elements['valuesfield'];
if ( tb.value.length > 0 ) tb.value += " , ";
tb.value += val;
}
I need to disable the link after the image has been clicked,preventing multiple insertions of the same value. I've modified the link this way:
Code:
<a href="#null" onClick="addValue('bold'); this.onclick=null;" ><img ......
but while only one click is allowed,i get many JS errors in the JSConsole like
Code:
uncaught exception etc.... and i think this is not a good sign.=
View 4 Replies
View Related
Sep 24, 2005
I have a menu of image links. I'd like them to have roll over images but also to have a drop down menu. Is it possible to have these two actions work at the same time? If so how would you put both actions in onmouseover and onmouseout?
View 1 Replies
View Related
Apr 30, 2002
How do I create an email link using javascript attached to an image link?
The simpler methods I have so far been able to find only work within form elements.
I have also tried...
window.location="mailto:contact@mydomain.com"
parent.location="mailto:contact@mydomain.com"
location.href="mailto:contact@mydomain.com"
... none of which seem to work.
What's the secret? Where am I going wrong?
View 4 Replies
View Related
Feb 14, 2003
Can you do an onmouseover swap image on an <img src tag instead of a link tag, e.g. <a href ? I want to swap images when mousing over the image but don't want the image to link to anywhere.
View 3 Replies
View Related
Feb 28, 2003
When you use a text link to swap an image, what do you put for the 'href'? If I put '#' then the image swaps no problem, however it will scroll to the top (problem when you are at the bottom of the page). If I put 'javascript:;' like I do for popup windows to open without scrolling to the top of the page, the image doesn't swap (click the green t-shirt, that uses the 'javascript:;')
Also, if anyone knows a way to swap an image using a drop down menu instead that would be even better. I couldn't figure that out so that is why I am using text links for now.
View 2 Replies
View Related