close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

CSS - Problem

Thread began 4/20/2010 8:06 am by tonygmg362159 | Last modified 4/28/2010 6:43 am by tonygmg362159 | 2175 views | 6 replies

tonygmg362159

CSS - Problem

Hi All,

I am trying to do a j-query pop out div which works fine but the problem is the css you have to display:none; for the window now when you do this the map only displays half / quater of the map, yet when you take the css display:none; out it the map works fine but the j-query box doesnt display right as it shows the map soon as the page is completely refreshed. I have attached the source code i am working on.


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml">
<head>
<title>Test div with j-query</title>

<script type="text/javascript" src="http://code.jquery.com/jquery-latest.pack.js"></script>
<script>

$(document).ready(function() {

//select all the a tag with name equal to modal
$('a[name=modal]').click(function(e) {
//Cancel the link behavior
e.preventDefault();

//Get the A tag
var id = $(this).attr('href');

//Get the screen height and width
var maskHeight = $(document).height();
var maskWidth = $(window).width();

//Set heigth and width to mask to fill up the whole screen
$('#mask').css({'width':maskWidth,'height':maskHeight});

//transition effect
$('#mask').fadeIn(1000);
$('#mask').fadeTo("slow",0.8);

//Get the window height and width
var winH = $(window).height();
var winW = $(window).width();

//Set the popup window to center
$(id).css('top', winH/2-$(id).height()/2);
$(id).css('left', winW/2-$(id).width()/2);

//transition effect
$(id).fadeIn(3000);

});

//if close button is clicked
$('.window .close').click(function (e) {
//Cancel the link behavior
e.preventDefault();

$('#mask').hide();
$('.window').hide();
});

//if mask is clicked
$('#mask').click(function () {
$(this).hide();
$('.window').hide();
});

});

</script>
<style>
body {
font-family:verdana;
font-size:15px;
}

a {color:#333; text-decoration:none}
a:hover {color:#ccc; text-decoration:none}

#mask {
position:absolute;
left:0;
top:0;
z-index:9000;
background-color:#000;
display:none;
}

#boxes .window {
position:absolute;
left:0;
top:0;
width:440px;
height:200px;
z-index:9999;
padding:20px;
display:none;
}

#boxes #dialog {
width:780px;
height:500px;
padding:10px;
background-color:#ffffff;
padding-left:100px;
padding-top:25px;
margin-right:auto;
margin-top:20px;
}





</style>
<script type="text/javascript" src="google_javascript/wagmp_map_1.js">/*wagmp*/</script>
<script type="text/javascript" src="http://maps.google.com/maps?file=api&v=2&key=ABQIAAAAz3QqxAzB2hGbt6H7NWJP6xRIHJbIy01oCWeKCM9kpE13ExYKZRTkswTg9xhL1Ek0xrQo1kjW_z6Rng">/*wagmp*/</script>
</head>
<body>

<ul>
<li><a href="#dialog" name="modal">Simple Window Modal</a></li>
</ul>


<div id="boxes">

<div id="dialog" class="window">
<p>
<a href="#"class="close"/>Close it</a></p>
<p>&nbsp;</p>
<div id="wagmp_map_1" style="width: 700px; height: 400px;"></div>
</div>
<!-- Mask to cover the whole screen -->
<div id="mask"></div>
</div>




<script type="text/javascript" src="google_javascript/wagmp_maps.js">/*wagmp*/</script></body>
</html>

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...