AllSeoHelp.com
Search the Entire Site
  • PHP
  • JavaScript
  • CSS
  • HTML

JavaScript - Fancybox Popup Viewer - Changing Style For Title






Topic

Fancybox Popup Viewer - Changing Style For Title

View Content
Hi there,
I can;t figure out where to change the code/add in code
I have installed Fancybox using jQuery and done all the neccessary steps to ensure it works as popup. However I can't find where to add in code/edit code to make my title left for instance or bold type etc.

This is the code that calls the fancybox website is: http://www.soltoro.com/NEW/projects/elrayo.html

Code:
<script> $(document).ready(function() {

	/* This is basic - uses default settings */
	
	$("a#single_image").fancybox({
	'titlePosition': 'inside'


	});
	
	/* Using custom settings */
	
	$("a#inline").fancybox({
		'hideOnContentClick': true});
		

	

	/* Apply fancybox to multiple items */
	
	$("a.group").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		  'titlePosition'         : 'inside',
		'overlayShow'	:	false
	});
	
});</script>



Similar Tutorials

Fancybox Popup Viewer - Changing Style For Title
Fancybox Popup On Page Load
Cross-browser Popup Image Viewer?
Customize Popup Ex. Color, Title, Location
Changing Title With Html?
Urgent:how To Style Border Between The Title And Content In Dojo Dialog
Lightbox Style Popup Conflicts With Menu
Changing Site Style
Dynamically Changing .style Attributes
Checking/changing The Status Of A Style
Making Tipsy To Read The Title Tag In <a Href... Title...> And Display As Tooltip
Can I Change The Title Bar Of My Site Every X Seconds To A New Title?
Alternate The <title> Between Original And New Title
Fancybox Question
Fancybox In A Gallery Help
Fancybox Not Working In Ie
Show Recaptcha With Fancybox
Fancybox Field Focus
Fancybox Form Problem
Fancybox Confirm Replacement Help
Javascript Mouse Over And Fancybox
Possible Conflict :: Sifr Vs. Fancybox
Is This Fancybox In Adapted Form Or Something Else?
Help With Displaying Fancybox And Piecemaker On Same Page
Newbie Needs Help With Document.getelementbyid And Fancybox Please!






Fancybox Popup Viewer - Changing Style For Title

Similar Tutorials View Content
Hi there,
I can;t figure out where to change the code/add in code
I have installed Fancybox using jQuery and done all the neccessary steps to ensure it works as popup. However I can't find where to add in code/edit code to make my title left for instance or bold type etc.

This is the code that calls the fancybox website is: http://www.soltoro.com/NEW/projects/elrayo.html

Code:
<script> $(document).ready(function() {

	/* This is basic - uses default settings */
	
	$("a#single_image").fancybox({
	'titlePosition': 'inside'


	});
	
	/* Using custom settings */
	
	$("a#inline").fancybox({
		'hideOnContentClick': true});
		

	

	/* Apply fancybox to multiple items */
	
	$("a.group").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		  'titlePosition'         : 'inside',
		'overlayShow'	:	false
	});
	
});</script>


Fancybox Popup On Page Load

Similar Tutorials View Content
I have a page that loads a fancybox popup and it works perfectly with the cookie for setting ho many days to show. the problem i have is that i need it to show 1 every 24 hours over a 3 day period. once the 3rd day is over and the user sees the window for the 3rd day i need a cookie set to never show the window again. here is my code as it sits now. I have worked with this for a couple of days on and off and it is above my head for sure.

any help is appreciated.

$(function() {
if ($.cookie('moment_comm')) {
// it hasn't been 1 day yet
} else {


$("#autostart").fancybox({'overlayShow':true,frameWidth:
840,frameHeight:360}).trigger('click');
}
}
);

$('#autostart').live('click', function(e) {
e.preventDefault();
$.cookie("moment_comm", "true", { path: '/', expires: 1 });

$.fancybox.close()
});

Cross-browser Popup Image Viewer?

Similar Tutorials View Content
Just curious if anyone has a crossbrowser version of the Popup Image Viewer script that's in the Post a JavaScript section. Seems that all of the ones in there (original and modifications) are browser specific, whereas I need something that will work for all browsers, or at least IE and firefox.

Customize Popup Ex. Color, Title, Location

Similar Tutorials View Content
How do I give my popup browser a background color, change the title, and center the image on the page? I'd also like to control where it should pop up.

Here is the code:

function popUpImage2()
{
var popupimage = document.getElementById("image2").src;
newwindow=window.open(popupimage,"POPUP","height=400,width=400");
if (window.focus) newwindow.focus();
}


Around the main image it says:

<img id="image2" style="display:none;"/><p><img src="images/bob.jpg" name="mainimage" width="424" border="0" id="mainimage" onclick="popUpImage2()" />


I'm kind of desperate, please write ASAP... Thanks in advance

Changing Title With Html?

Similar Tutorials View Content
Right then!

I have a drop down list. The titles are really long. What I want to happen is, end user to click on a selection, i.e.

"This is a really really long title"

And then by the power of voodoo just the abbreviated is shown in the field.

"TIARRLT"

Can this be done by JUST HTML? Or am I looking at some JS here? If anyone could point me to a tutorial that would be great. Or if you have the code you don't mind sharing... amazing!!!

Thanks all!

Urgent:how To Style Border Between The Title And Content In Dojo Dialog

Similar Tutorials View Content
hii
i am doing a project and i meet some problem
i create a dojo dialog box i need to style the dialog box into whole thing white but i am not able to style the border (the grey line) between the title and content
so i was wondering how am i goin to style it into white?
i don't use the css to style it so i was wondering how to write it like " noteDlg.titleBar.style.background = 'white'; " this kind to remove the grey line between the title and content

thanks
ps. I really need it very urgently...hope reply asap

function note(){
noteDlg = new dijit.Dialog({
title: "Programatic Dialog Creation",
draggable: false,
style: "width: 300px; border:0px; "

});
// set the content of the dialog:
noteDlg.attr("content", "Hey, I wasn't there before, I was added at ");
noteDlg.titleBar.style.background = 'white';


noteDlg.show();
}

Lightbox Style Popup Conflicts With Menu

Similar Tutorials View Content
I have a few hundred popups that I am trying to change to a "lightbox" style solution:

Code:
<!DOCTYPE html>
<html>

<head>
<title>Test 1</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js"></script>
<script src="../../js/jquery.colorbox-min.js"></script>
<link rel="stylesheet" href="../../css/colorbox5.css" media="screen">
<script src="../../js/ssm.js" type="text/javascript"></script>
<script src="../../js/ssmitems3a.js" type="text/javascript"></script>
<link rel="stylesheet" href="../../css/ssmitems.css" type="text/css">

<script>
$(document).ready(function(){
$("a[rel='tip']").colorbox();
});
</script>
</head>

</script>
<body>
<a rel="tip" href="tip1(AC)2.html"><img border="0" src="../../img/tipani1.gif" width="50" height="74"></a>
</body>

</html>

The new colorbox popup solution works well, but in some browsers - notably IE - it conflicts with the SIDE MENU routine I use.

I think the menu is old code, but it works.

However, to get the new "lightbox-style" popup to work in IE, I have to include <!DOCTYPE html>.

In the other browsers, omitting the declaration apparently solves the conflict problem (but I feel it ought to be there).

I really don't know what to do. Tinker with the side menu code?

Here is a demo with the <!DOCTYPE html> declaration:

http://www.aapress.com.au/ieltsonlin...conflict1.html

...and without it:

http://www.aapress.com.au/ieltsonlin...conflict2.html

I have tried with a full declaration but it makes no difference at all. And further reading online suggests <!DOCTYPE html> is OK.

Does anyone spot a reason for the conflict?

Changing Site Style

Similar Tutorials View Content
Hello guys I have a questions:
How can I use javascript to change the CSS the page uses?
I'm a noob to javascript so please help me out =D

Regards,

Thunderofnl

Dynamically Changing .style Attributes

Similar Tutorials View Content
Hi All

I have a piece of script which makes a div slide out from the side of the screen with information on it. I can change the innerHtml etc no problem, but i have a problem with change .style attributes dynamically. My code:

Code:
var mystring = "height:500px";
var keyVal = mystring.split(":")
var slidingDiv = document.getElementById('slidingDiv');
slidingDiv.style.keyVal[0] = keyVal[1];

As you see above i get a value which i need to split() to get the key and value to use. So what i would like to see is:

Quote:
slidingDiv.style.height = 500px;
But it does not work, as there is no such function as slidingDiv.style.keyVal[0];
How do i change this?

I hope I've explained this thoroughly enough. Please ask if i need to explain further.

Regards
Marinus

Checking/changing The Status Of A Style

Similar Tutorials View Content
How do I check the status of a style?

I thought something like this would work, but no joy: Code:
divTest = document.getElementById('link_container');
if (document.divTest.style.display == "none") {
}


Making Tipsy To Read The Title Tag In <a Href... Title...> And Display As Tooltip

Similar Tutorials View Content
How to I use the tipsy (http://onehackoranother.com/projects/jquery/tipsy/) to read from the title tag in the

Code:
<a href="#", title="Hello<br>World">Hello World</a>


From what I can do is to use the tipsy code:
Code:
$('#example-html').tipsy({html: true });

The final code which I wish to create may look something like the following:
Code:
for (var i=0; i<10; i++){
document.write("<a href='#', title='Hello<br>" + i + "' class='example-html'> Hello " + i + "</a>");
}

Appreciate any help offer

Can I Change The Title Bar Of My Site Every X Seconds To A New Title?

Similar Tutorials View Content
This page: http://homepage.ntlworld.com/kayseyc...document2.html
seems to indicate that it's possible, but it looks like it also pops up an alert window which would be annoying as hell. Is there a way to, say, once every minute change the title bar text?

You see I have a text file of rotating slogans that appear each time you reload a page on my site and someone suggested that having them change even when the page is already open might be fun. I thought I'd look into it and see if it's possible. The site is http://opalcat.com.

I don't know enough about javascript to know if this is possible. I am fairly good at implementing and installing other people's code, though, and can usually make minor changes to tweak things.

Please let me know if this is a doable thing, and if so, if you'd be willing to help me work it out. Thanks in advance,

OpalCat

Alternate The <title> Between Original And New Title

Similar Tutorials View Content
I am looking to use a similar method as facebook chat does, where it alternates between the original title text and 'friendsName has sent you a message!...'

how can I do this ?

Fancybox Question

Similar Tutorials View Content
Hi, Does anyone know if in FancyBox there is an option to always show the side arrows on image pop ups?

http://fancybox.net/

Fancybox In A Gallery Help

Similar Tutorials View Content
Does anyone have a solution? The first image works fine, but obviously when the image is changed by the second function it will not work????

Code:
<script type="text/javascript">
jQuery(document).ready(function(){
 
  $("a#single_image").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false
	});

});

</script>
</head>

<body>
<div class="hidden">
	<script type="text/javascript">
$(function() {
$(".image").click(function() {
var image = $(this).attr("rel");
var large = $(this).attr("title");
$('#image').hide();
$('#image').fadeIn('slow');
$('#image').html('<a href="' + large + '" id="single_image"><img src="' + image + '"/></a>');
return false;
    });
});
	</script>


Fancybox Not Working In Ie

Similar Tutorials View Content
Hi,

I am using fancybox to display a contact form in a lightbox here http://bit.ly/i5TwmL this is working in Firefox and Safari but not in IE, I have no idea why.

If anyone has any suggestions on how to get this to work it will be more than appreciated!

Many Thanks,
Ria

Show Recaptcha With Fancybox

Similar Tutorials View Content
All,
I'm opening up a page using Fancybox:
Code:
$("#register_box").fancybox({
'transitionIn' : 'elastic',
'transitionOut' : 'elastic',
'hideOnOverlayClick': false,
/*'type' : 'iframe',*/
'autoDimensions'	: true			
});

This works fine and opens up my registration page. However when I have the type commented it won't display my reCaptcha. If I uncomment this in my jQuery then it will display the reCaptcha. Any ideas to why this is? Thanks in advance for any ideas.

I did find this link:
http://www.warpturn.com/using-fancybox-with-recaptcha/

This doesn't help me though because I need it to load without the iFrame but could give some direction on what is going on.

Fancybox Field Focus

Similar Tutorials View Content
Hey there,

I have a form which open in a jQuery Fancybox Window.

The fancybox window opens automatically when the page loads. When it loads, I would like it to set focus on the username field in the form in the Fancybox window.

I have found that this must be done when fancybox is envoked, thus I have tried the below code which does not work :

Code:
<script type="text/javascript">
   jQuery(document).ready(function() {
    $("#hidden_link").trigger('click');
	document.getElementById('login_form.username').focus(); 
});
</script>

The form name is "login_form" and the field name is "username".

Can anyone help????

Thanks a lot!!!

Fancybox Form Problem

Similar Tutorials View Content
please see http://bit.ly/i5TwmL for what I am working on.

You can see that when selecting 'Contact' from the top navigation a light-box (fancybox) with a contact form opens, this form can be filled and when the submit button is pressed the content of the form is emailed to myself.

However.... The 'Thank you message' is not appearing in the light-box as I would like it to and I cannot work out how to do this.

Any suggestions muchly appreciated!

Fancybox Confirm Replacement Help

Similar Tutorials View Content
Hi,

im using this code as a fancybox replacement for confirm.



Code:
function fancyAlert(msg) {
    jQuery.fancybox({
        'modal' : true,
        'content' : "<div style=\"margin:1px;width:240px;\">"+msg+"<div style=\"text-align:right;margin-top:10px;\"><input style=\"margin:3px;padding:0px;\" type=\"button\" onclick=\"jQuery.fancybox.close();\" value=\"Ok\"></div></div>"
    });
}

function fancyConfirm(msg,callback) {
    var ret;
    jQuery.fancybox({
        modal : true,
        content : "<div style=\"margin:1px;width:240px;\">"+msg+"<div style=\"text-align:right;margin-top:10px;\"><input id=\"fancyConfirm_cancel\" style=\"margin:3px;padding:0px;\" type=\"button\" value=\"Cancel\"><input id=\"fancyConfirm_ok\" style=\"margin:3px;padding:0px;\" type=\"button\" value=\"Ok\"></div></div>",
        onComplete : function() {
            jQuery("#fancyConfirm_cancel").click(function() {
                ret = false; 
                jQuery.fancybox.close();
            })
            jQuery("#fancyConfirm_ok").click(function() {
                ret = true; 
                jQuery.fancybox.close();
            })
        },
        onClosed : function() {
            callback.call(this,ret);
        }
    });
}

function fancyConfirm_text() {
    fancyConfirm("Ceci est un test", function(ret) {
        alert(ret)
    })
}

how can i use fancyConfirm via an onclick in a hyperlink?


thanks for your help!

Javascript Mouse Over And Fancybox

Similar Tutorials View Content
Hey everyone,

I've got a section on my website where I have 2 images placed on top of each other when the user rollovers the image, the image ontop fades out revealing the image underneath. You can then click on this underneath image to open a fancybox window and scroll through pictures. My problem is that sometimes the fade out gets 'stuck' and after closing the fancybox window, the image reamins half faded out etc and the rollover doesn't work anymore.

here's my code:

Code:
<style type="text/css" media="screen">
   .js #animators { position: relative; height: 100px}
   .js #animators div.container { position: absolute; left: 0; top: 0

</style>

  <script type="text/javascript">

    document.documentElement.className += " js"; // Add js class to the HTML element
    $(function(){
      var $containers = $("#animators > div").hide();
	  
      $('#show').show();

      $('tr td a.c').each(function(i,el){
        var idx = i;
        $(this).click(function(e){
          var $target = $containers.filter(':eq(' + idx + ')');
          if($containers.filter(':visible').not($target).length){
            $containers.filter(':visible').fadeOut();
          }
          $target.not(':visible').fadeIn();
          e.preventDefault();
        })
      })
    });
</script>

<div class="thumbnail" style="margin-top:5%; margin-right:2%;">
	    			<div class="visible-image">
						<img src="images/illustrationslabel.jpg" />
					</div> 
        			<div class="appearing-image"><img onclick='$("a.illustrations:first").trigger("click");' src="images/illustrations.jpg" />
        			</div>
   				</div>

mc

Possible Conflict :: Sifr Vs. Fancybox

Similar Tutorials View Content
I am creating a site that has a link with sIFR text that links into inline content via Fancybox. I know it works properly withour sIFR on, so the two are battling. Is there any way to have both??

url: www.happydogwebproductions.com/cadillac

The contact link is supposed to pop up via fancybox. You can get it to load if you are quick enough to click it before sIFR kicks in.

I've tried asking elsewhere, got over 100 views and not one reply. Any help would be greatly appreciated

Is This Fancybox In Adapted Form Or Something Else?

Similar Tutorials View Content
Hello!
I am not sure if I'm posting in the right place so if I'm not, tell me to gtfo (and please let me know where I should be instead)!

I want to create a gallery of images with a fancybox-esque style but incorporate the "folder functionality" that this site has: http://www.johannespescatore.com/

In other words: When I click on an image I want it to expand to "fullscreen". (This I can manage with fancybox.) What I can't work out how to do is display more images from the same photo-session at the bottom of the fullscreen.

ANY help would be much appreciated! I am at a loss as where to start...

Thank you
/Hout

Help With Displaying Fancybox And Piecemaker On Same Page

Similar Tutorials View Content
Hello, I am building a charirty website and having a great deal of trouble with a page that has a Piecemaker slideshow and a fancybox modal window.

When you click on the modal window it launches correctly, but it is also displaying the Piecemaker slideshow over the top of it.

What I want is for the Piecemaker slideshow to flow as it is on the page and when you click on the link for the Modal window, for just the modal window to open (hope that makes sense)

the web page is : www.imovecornwall.org/index.htm

the html for the page is:

<title>imove estate agents cornwall, not for profit low cost online estate
agents</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>

<script type="text/javascript" src="fancybox_multiple/fancybox/fancybox/jquery.mousewheel-3.0.4.pack.js"></script>
<script type="text/javascript" src="fancybox_multiple/fancybox/fancybox/jquery.fancybox-1.3.4.pack.js"></script>
<link rel="stylesheet" type="text/css" href="fancybox_multiple/fancybox/fancybox/jquery.fancybox-1.3.4.css" />
<link rel="stylesheet" href="fancybox_multiple/fancybox/style.css" />

<script type="text/javascript">
$(document).ready(function() {

$("a.pop").fancybox({
'overlayColor' : '#000',
'overlayOpacity' : 0.8
});

$("a.pop2").fancybox({
'overlayShow' : false,
'transitionIn' : 'elastic',
'transitionOut' : 'elastic'
});
});
</script>

<script type="text/javascript">

var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-10061181-2']);
_gaq.push(['_trackPageview']);

(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();


function FP_changePropRestore() {//v1.0
var d=document,x; if(d.$cpe) { for(i=0; i<d.$cpe.length; i++) { x=d.$cpe[i];
if(x.v=="") x.v=""; eval("x."+x.n+"=x.v"); } d.$cpe=null; }
}

function FP_changeProp() {//v1.0
var args=arguments,d=document,i,j,id=args[0],o=FP_getObjectByID(id),s,ao,v,x;
d.$cpe=new Array(); if(o) for(i=2; i<args.length; i+=2) { v=args[i+1]; s="o";
ao=args[i].split("."); for(j=0; j<ao.length; j++) { s+="."+ao[j]; if(null==eval(s)) {
s=null; break; } } x=new Object; x.o=o; x.n=new Array(); x.v=new Array();
x.n[x.n.length]=s; eval("x.v[x.v.length]="+s); d.$cpe[d.$cpe.length]=x;
if(s) eval(s+"=v"); }
}

function FP_getObjectByID(id,o) {//v1.0
var c,el,els,f,m,n; if(!o)o=document; if(o.getElementById) el=o.getElementById(id);
else if(o.layers) c=o.layers; else if(o.all) el=o.all[id]; if(el) return el;
if(o.id==id || o.name==id) return o; if(o.childNodes) c=o.childNodes; if(c)
for(n=0; n<c.length; n++) { el=FP_getObjectByID(id,c[n]); if(el) return el; }
f=o.forms; if(f) for(n=0; n<f.length; n++) { els=f[n].elements;
for(m=0; m<els.length; m++){ el=FP_getObjectByID(id,els[n]); if(el) return el; } }
return null;
}

function FP_swapImgRestore() {//v1.0
var doc=document,i; if(doc.$imgSwaps) { for(i=0;i<doc.$imgSwaps.length;i++) {
var elm=doc.$imgSwaps[i]; if(elm) { elm.src=elm.$src; elm.$src=null; } }
doc.$imgSwaps=null; }
}

function FP_swapImg() {//v1.0
var doc=document,args=arguments,elm,n; doc.$imgSwaps=new Array(); for(n=2; n<args.length;
n+=2) { elm=FP_getObjectByID(args[n]); if(elm) { doc.$imgSwaps[doc.$imgSwaps.length]=elm;
elm.$src=elm.src; elm.src=args[n+1]; } }
}

function FP_preloadImgs() {//v1.0
var d=document,a=arguments; if(!d.FP_imgs) d.FP_imgs=new Array();
for(var i=0; i<a.length; i++) { d.FP_imgs[i]=new Image; d.FP_imgs[i].src=a[i]; }
}
</script>
</head>

<body background="images/bg.gif" onload="FP_preloadImgs(/*url*/'images/redbadge.png')">

<div style="position: absolute; width: 1001px; height: 606px; z-index: 2; left: 92px; top: 190px" id="layer2">
<div style="position: absolute; width: 566px; height: 44px; z-index: 1; left: 414px; top: 676px" id="layer9" align="right">
<font face="Trebuchet MS" size="1">Copyright 2011 . imove cornwall . not
for profit estate agents in cornwall . a community lead social
enterprise</font><p><font face="Trebuchet MS" size="1">
imove estate agents cornwall, cornwall estate agents, imove cornwall,
imove, i move, not for profit estate agents, estate agents in cornwall,
houses for sale in cornwall, sell privately, private house sales
cornwall, i move cornwall, i move estate agents</font></div>
<img border="0" src="images/c-head.png" width="980" height="40"><div style="position: absolute; width: 420px; height: 415px; z-index: 2; left: 0px; top: 40px; border-left: 1px solid #DEDBD2; border-right: 1px solid #DEDBD2" id="layer10" align="left">
<div style="position: absolute; width: 1001px; height: 100px; z-index: 1; left: -2px; top: 495px" id="layer11">
<a title="click here for information about imove estate agents" href="about/index.htm">
<img border="0" src="images/_front-small_2.png" width="327" height="135" alt="imove estate agents cornwall"></a><a href="search.htm"><img border="0" src="images/_front-small2_blank3.png" width="324" height="135"></a><a href="sell.htm"><img border="0" src="images/_front-smallr_blank.png" width="330" height="135"></a></div>
<p align="center">
<object classid="clsid27CDB6E-AE6D-11CF-96B8-444553540000" id="obj1" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="978" height="495">
<param name="movie" value="piecemaker.swf">
<param name="quality" value="High">
<embed src="piecemaker.swf" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="obj1" width="978" height="495"></object>
</div>
<address>
<a href="sell.htm">
<img border="0" src="resized_png_images/head_new_template.png" width="980" height="416"></a></address>
<address>
&nbsp;</address>
<address>
&nbsp;</address>
</div>
<div style="position: absolute; width: 191px; height: 227px; z-index: 1; left: 93px; top: 11px" id="layer1">
<p align="center">
</p>
<address align="left">
<img border="0" src="images/logo_2_72dpi_small.png" width="177" height="176"></address>
<address align="center">
&nbsp;</address>
<p align="left">
&nbsp;</p>
<p align="center">&nbsp;</div>

<div style="position: absolute; width: 116px; height: 121px; z-index: 4; left: 1020px; top: 34px" id="layer36">
<a title="Click here to sell with imove" href="sell.htm">
<img border="0" src="images/bluebadge.png" width="133" height="133" id="img1" onmouseout="FP_swapImgRestore()" onmouseover="FP_swapImg(1,1,/*id*/'img1',/*url*/'images/redbadge.png')"></a></div>




<p align="center">&nbsp;</p>




<div style="position: absolute; width: 171px; height: 58px; z-index: 3; left: 327px; top: 61px" id="layer33">

<a class="pop" href="resized_png_images/modal1.png" rel="group1">
<img alt="" src="resized_png_images/tick2.png" border="0" align="left" /></a><address>
<span style="font-style: normal"><font face="Myriad Pro" size="1">&nbsp;</font></span></address>
<address>
<span style="font-style: normal"><font face="Myriad Pro">Not for
profit</font></span></address>
</div>




<div style="position: absolute; width: 225px; height: 58px; z-index: 3; left: 522px; top: 61px" id="layer34">

<address>
<span style="font-style: normal">

<a class="pop" href="resized_png_images/modal2.png" rel="group1">
<img alt="" src="resized_png_images/tick2.png" border="0" align="left" /></a></span></address>
<address>
<font size="1"><span style="font-style: normal">&nbsp;</span></font></address>
<address>
<span style="font-style: normal"><font face="Myriad Pro">Cost
effective</font></span></address>
</div>




<div style="position: absolute; width: 282px; height: 58px; z-index: 3; left: 721px; top: 61px" id="layer35">

<address>
<span style="font-style: normal">

<a class="pop" href="resized_png_images/modal3.png" rel="group1">
<img alt="" src="resized_png_images/tick2.png" border="0" align="left" /></a></span></address>
<address>
<font size="1"><span style="font-style: normal">&nbsp;</span></font></address>
<address>
<span style="font-style: normal"><font face="Myriad Pro">Supporting
local good causes</font></span></address>
</div>




<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<div style="position: absolute; width: 657px; height: 50px; z-index: 3; left: 262px; top: 194px" id="layer13">
<div style="position: absolute; width: 130px; height: 44px; z-index: 1; left: 679px; top: 1px" id="layer14">
<a title="Join us on Facebook" href="http://www.facebook.com/pages/Truro-United-Kingdom/Imove-cornwall/121184304626633">
<img border="0" src="FaceBook-icon.png" width="33" height="33"></a>&nbsp;&nbsp;
<img border="0" src="Twitter-icon.png" width="33" height="33">&nbsp;&nbsp;
<img border="0" src="Feed-icon.png" width="33" height="33"></div>
<p><font face="Myriad Pro">
<a title="Back to the Homepage" href="index.htm" style="text-decoration: none">
<font color="#000000" id="id1" onmouseout="FP_changePropRestore()" onmouseover="FP_changeProp(/*id*/'id1',1,'style.fontFamily','Myriad Pro','style.fontSize','12pt','style.textDecoration','underline','style.color','#000000')">
home</font></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<a title="About imove" style="text-decoration: none" href="about/index.htm">
<font color="#000000" id="id2" onmouseout="FP_changePropRestore()" onmouseover="FP_changeProp(/*id*/'id2',1,'style.textDecoration','underline','style.color','#000000','style.fontFamily','Myriad Pro','style.fontSize','12pt')">
about</font></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<a title="Property for sale with imove" href="search.htm" style="text-decoration: none">
<font color="#000000" id="id3" onmouseout="FP_changePropRestore()" onmouseover="FP_changeProp(/*id*/'id3',1,'style.textDecoration','underline','style.color','#000000','style.fontSize','12pt','style.fo ntFamily','Myriad Pro')">
property search</font></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<a title="Sell your property with imove" href="sell.htm" style="text-decoration: none">
<font color="#000000" id="id4" onmouseout="FP_changePropRestore()" onmouseover="FP_changeProp(/*id*/'id4',1,'style.fontFamily','Myriad Pro','style.fontSize','12pt','style.textDecoration','underline','style.color','#000000')">
sell your property</font></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<a title="Support for existing customers of imove" href="support.htm" style="text-decoration: none">
<font color="#000000" id="id5" onmouseout="FP_changePropRestore()" onmouseover="FP_changeProp(/*id*/'id5',1,'style.fontFamily','Myriad Pro','style.fontSize','12pt','style.textDecoration','underline','style.color','#000000')">
support</font></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<a title="Contact imove cornwall" href="contact.htm" style="text-decoration: none">
<font color="#000000" id="id6" onmouseout="FP_changePropRestore()" onmouseover="FP_changeProp(/*id*/'id6',1,'style.fontFamily','Myriad Pro','style.fontSize','12pt','style.textDecoration','underline','style.color','#000000')">
contact us</font></a></font></div>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>

</body>

</html>

PLease bear with me as I am a total newb to HTML and Jquery.

If someone could very kindly tell me where the problem is, I would very very much appreciate it.

Thank you for your time.

Newbie Needs Help With Document.getelementbyid And Fancybox Please!

Similar Tutorials View Content
http://www.earthinke.co.uk/main_site/product.php

Hi

I'm trying to get something to work on the site URL'd above but failing miserably.

If you can please follow the link, hit the red rectangle on the RHS and then when the bigger image loads into the DIV above, click on it...

All I want is for this link to open in fancybox (using the class="earthInke") but it won't work from the image...just opens in a new page

Below it you will see a text link, this works as I want it to, but I cannot get it work from the image

Probably something completely wrong in what I am doing or I've missed something out, any help would be appreicated guys

Thanks

Pete
Privacy