Hi,
I have some time that I am trying to build a page with some menus and to include joberbase into one menu
but I am having a problem to include it on the page.
I am using iframes to show it, but when I click on Post New Job the height of the
joberbase page change and gives an extra scrollbar.
I think that this problem might me solved with some javascript code.
Can someone help me?!

Here it's the link to donwload a sample of the project
http://www25.zippyshare.com/v/14082818/file.html

Member Avatar for LastMitch

Can someone help me?!

I don't download files.

So base on the issue you are having is that you want to resized the iFrame using javascript?

You can read this link that can let you resized the Iframe using javascript:

http://www.mattcutts.com/blog/iframe-height-scrollbar-example/

or you can used jQuery:

<script type="text/javascript">
jQuery(function($) {
$('.iframe').css('height', $(window).height()+'px');
});
</script>

<iframe src="iframe.html" width="60%" class="iframe">
<p>iFrame working</p>
</iframe>
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.