Force Maximised Window?
Nov 2, 2005Can I use JavaScript to force a maximised window ?
View 17 RepliesCan I use JavaScript to force a maximised window ?
View 17 RepliesIs there a way to force a popup window to always be on top?
Generally, I object to this when surfing the web, I associate it with spam.
But in this case it is for a browser based application where the behavior is desirable.
Is it possible with JS?
I want to make a new window and this new window will be like a menu like for instance if I make a drawing web app. Where the person can draw on the main website.Yet, I need to make controls that are not on the website but is created into a new page or new window but I want that new window to always be on top.so they can click the main webpage and paint it without the new created window to be sent behind the webpage.something like this: http:[url].....
but that's in c++ and that's an app.I want the same effect using javascript and have the window of the web browser that was newly created to always be on top.
I am opening a site soon that will have a preliminary, invite-only beta system to work out bugs, etc. I need to make a feedback system and I already have most of it figured out, but I need to know how to make a button or image stay at the bottom of the screen.
For example, take a look at klout.com. They have a feedback button on the right side that stays in the same position as you scroll down the page. How can I do this, but keep the button at the bottom of the page?
I don't want to have to add any extra containers, etc. I have my layout entirely designed and I want the button to be easy to add/remove. I'm thinking I would just need to run a script that creates maybe a div that holds the button, and position the div at the height of the window minus the height of the div. But how can I make it stay there as the user scrolls?
I am using the script below to open a popup window which displays an external web site. The problem I am having is if the the window which calls the popup is clicked the popup window goes to the back. Is there any way I can force the popup window to remain at the front until it is closed by the user.
[Code]...
How do I force a window, pened alone, to be displayed in its frame set?
tried this:
if (parent.location.href == self.location.href) {
window.location.href = '../'
}
the problem is that the original page is replaced by the main.htm page (the
default page for the 'main' frame)., because the open event of the menu page
calls for the main.htm to be loaded. Is there a way that I could pass a page name as an argument to the index page at all? Something like
window.location.href='index.html?Loc=IT_Study___In formation.htm'
Is there a javascript or jQuery method available to force the browser to render the contents of the window? This would something similar to updating the "stage" in Director or Flash.I have a two-column interaction set up where users input information in one column and see their results in another. Safari, Firefox, etc all work perfectly. IE however needs an extra click anywhere on the browser window for the results to appear. So I'm looking for a way to attach a function to a UI control that 'forces' IE to render the screen so the changes appear.
View 2 Replies View RelatedI'm having issues with links on my intranet pages that navigate outside of my intranet to other intranets hosted in the same server farm. When I click the links they just do nothing. Links within my intranet site work fine. Is there any kind person here that is capable of pointing me in the direction of resources to force a popup using javascript and making it navigate to the desired link?
View 6 Replies View RelatedI have an emagazine i want to add to my website, the probelm is when it opens in a browser you have to sroll down the page, to view it all, what i was wondering is, is it possibe to create a link that when somebody selects to view the magazine it forces the browser to openin full screen mode so that it fits niely on the screen without the toolbars and evertything taking up half the page.
View 4 Replies View Relatedi've got a bunch of webaplications in use that the users have open in a browser all day. and so far every thing is perfecto. my problems start when the user during the day get emails with links in them... being humans they click those links and some times they "loose" the webaplication from the original browser. this also happens of course when they use their bookmarks etc.
what i would like is to include a javascript that forces a new browser window wtih the new url & leaves the original site as-is if a url is sent to the browser.
I want to display HTML text inside a div and have the page open scrolled to the bottom. (My div has overflow:auto so that it appears with scroll bars)
I have found this that works on a textarea:
document.all.MyDivId.scrollTop = document.all.MyDivId].scrollHeight;
But this doesn't work on a div. I am using a div because the text I am displaying contains HTML. Surely it is possible to simply set a scroll bar to the bottom in a div?
is there anyway to force an event, like mouseover? I have a page that
loads, and due to some complex js code (not mine) it fails to write
labels to tabs until the user does a mouseover on the tabs. the page
load event happens beforre the tabs are loaded. Once the user
mouseovers the tabs, the labels of the tabs appear, and stay there. it
is irritating. i would like to force a mouseover so the tab names
appear.
I have a page where I set document.location.href
but the previous copy of that page is in the cache,
so Firefox is not refreshing its contents, which is
what I want it to do. Is there a way to get this
result?
I have been writing a practice sliding div navigation script. I am finding
myself in the position where I need to force a div into showing the hover
behavior defined in css.
So my question is this. If I have two divs, is there a way to make the
second div display its onmouseover behavior when the mouse is over div 1?
I have a script that parses window.location.hash to figure out which xml
file to load. The xml files populate a page on a framed site. The code works
correctly to a point.
If I have a seperate html page to support each xml it works. I would like to
eliminate the individual html pages becuase only one should be needed.
When I use one page the first link works, then the second one does nothing
(doesn't refresh the frame). If I click to a static image for the frame then
click the next xml link it works.
What can I do to force the frame to update? I am clicking on a HREF link
that should re-load the html page, but with the new xml data.
I am a complete JS newbie. I am trying to make one radio button assume a certain value when another one in a different group is clicked. This is a conference registration form for which most applicants will pay, but some do not. It is passing form data to a ColdFusion backend, and
I simply wish to havethe non-paying applicants have the no-pay "payment type" automatically selected when they select the no-pay registration type. I have tried the following with no success (in IE 6.0; I want to test it here first)
<script language="JavaScript" TYPE="text/javascript">
function forceCompPay() {
if (document.forms[1].groupType == "speaker") {
document.forms[1].groupPayment[comp].checked = true
}
}
</script>
</head>
the "master" button is:
<cfinput type="radio" name="type" value="speaker"
onClick="forceCompPay()">Speaker
the "slave" button is:
I have a div with a scroll bar. It contains various child divs, and when the user sees them, they are in vertical order. So he can scroll to whatever child div he wants to. Then he can click on an arrow, and the entire child div expands to reveal a lot of text. This all works. But I'd also like to make the child div scroll up to the top of the parent div. Otherwise, it could happen that the user clicks on a child div that is near the bottom of the screen, and it expands, but most of the content is below the screen, which means he has to use the browser's own scrollbar to see the rest. I know that javascript has a 'scrollby' function, butI wouldn't know how much to scroll it, and I also want to use a jquery selector to identify the child div.
View 1 Replies View RelatedI want to enforce a click on the facebook share button.
I was thinking something like this:
javascript:window.location="http://www.facebook.com/connect/prompt_feed.php?locale=en_US&message=hi"; javascript:function selectFirst() { publish.focus(); publish.click();} selectFirst();
Something wrong with that code? What code would work? Is it not possible?
At my job we have computers that are set up with restricted rights. Firefox 2 is the default browser (good call), but for some reason a site that the user has to visit is IE only (yeah, wtf).
We have a webpage open with a link to that IE only site, now is there a way to open that link in IE from FF? We have full control over these machines, so we could install batch software or whatever it would take.
How I can force submit button when the page start to load? The form name is "chglang"
View 4 Replies View RelatedI have a simple iFrame which I use to open other websites. However, some websites force themselves to be opened in "parent" windows when links are clicked, or even always. How do I go about avoiding this? I believe there is a way to set my iFrame as "self" or something like this in order for all sites to still only load in iFrames, but I'm not sure how.
View 2 Replies View Relatedi discovered that if i just enter "test test test" into a basic tinymce textarea, it doesnt store any html in the db. only when i hit enter at the end of a line does it wrap <p> around both sentences. and, if i just paste a block of text in to tinymce (no linebreaks), it doesnt add html markup either
so i have to tell client to hit enter at the end of any sentence, or the db just returns text with no html markup. i cant use the code below either cause what if they enter two lines? in that case there will be two <p>'s wrapped around the text?
<p><? echo row['text'];?></p>
anyone know how to get around this?
how can i make <textarea> tag with default Language i tried <textarea lang="he" > but it didnt work...
so i thgout about it ..
and in my case i want to force the whole page default Language to hebrew...
can i do that with javascript ? when the page load just to choose the Language hebrew then when user type it will type in hebrew...
I have a page A which contains an iframe B which gets loaded with content as the page loads Page A has a link. When the link is clicked, I invoke some JavaScript function which performs some tests, and then I would like to have my iframe reload some other URL
The problem is that I change the iframe's src attribute to the new URL but nothing happens. The iframe isn't reloading.
How can I force it to reload? I heard that it was a problem in IE but that could be a mistake on my part It is vital to note that if I clean my browser cache (on IE), then the code works fine once (the iframe gets reloaded). But once it is in the cache, successive attempts fail
Here is a sample of my code
Code:
<head>
function test() {
// perform some tests here
[Code]....
when a popup window appear, can I force users to focus on the popup
window "ONLY" that mean, if users don't close the popup window, they can't do
anything to other ie window (include close the opener window...etc)
I would like to know if it's possible to force a dialog box to "expire" after so many seconds? The scenario is that I'm holding various objects in my session. Before it times out, I want to notify the user to click Okay to save the work now OR click cancel to refresh the page. What if the user doesn't respond to the dialog box for a long time and then hits save? Well the session has already timed out!
So, can I have the dialog box appear until the session times out and then force a refresh without user interaction? I've seen a similar thing done before on bankOfamerica website, but I'm not sure if it's with Javascript.