Disable Browsers Maximize Button
Jul 23, 2005
I have created a frameset which is my default page. I am using
window.resizeto and window.move to size and position the window on the
users screen, but I also need to disable the maximize button on the
window.
I know this can be done when using the window.open function as one of
it's parameter's, however, as this is my landing page, I need to do
this on page load.
View 1 Replies
ADVERTISEMENT
Aug 27, 2009
How can I capture the maximize and minimize of a browser? It is possible to capture this events? I'm searching the web and I didn't found any results. I want to be know if the user maximize/minimize the browser ?
View 1 Replies
View Related
May 19, 2009
I have a message system that I want to prevent double posting. So when a user sends a message i would like to disable the button. But its done using AJAX and will load without much time. But enough to cause double clicking. So now the button needs to be enabled once Text is put in the Form Field.
View 2 Replies
View Related
Dec 11, 2009
I'm trying to make my javascript linked "print" button NOT appear in browsers with js disabled? I'm a total js noob. Here's my code:
<a href="javascript:window.print()"><img src="images/PrintButton.png"></a>
View 9 Replies
View Related
Jun 14, 2011
how to stop the browsers back button from working after a user has logged out. I tried the windows.history.forward(1); function but it either is not working for me, or I am not putting it int the right place.The logout button is on the menu.php page. The button calls the logout.php file which redirects the user to the index.php page after logout.
View 3 Replies
View Related
Mar 13, 2005
I've implemented the following script: http://www.cross-browser.com/x/examples/drag1.php
all works perfectly, however i just need to know how i could also add a maximize function in order for a div to cover the whole webpage..
View 5 Replies
View Related
Mar 16, 2005
before starting to modify the script i juste want to know if it's gone work like this. I prefer to ask because i still know nothing about javascript even though i start to understand thing a little but here is the script for a div to be maximized! however i don't want the div to cover the whole screen in terms of height! indeed i want to leave 30px on the bottom! Code:
View 2 Replies
View Related
Sep 26, 2009
Why this code is not working on Webkit browsers:
Only jquery and the plugin printed above are loaded, so there shouldn't be any conflicts.
HTML:
Chrome gives the following error: Uncaught TypeError: Object #<an Object> has no method 'followUser
View 10 Replies
View Related
Jul 23, 2005
I was wondering if it is possible to maximise a screen in javascript.
right now, I use this code:
A HREF="heritage.html" onClick="msgWindow=window.open
('heritage.html','fullWindow','toolbar=no,location =no,directories=no,status=
no,menubar=no,scrollbars=yes,resizable=yes,width=8 30,height=630'); return
false" onmouseover="window.status='open site in full screen' return true"
CLASS=TP>open full screen</A>
, but I was wondering if we can fill the entire screen?
View 8 Replies
View Related
Dec 5, 2005
I've found this code:
<SCRIPT LANGUAGE="JavaScript">
function Disab (val) {
if(val=="1")
{form1.Submit.disabled=true}
if(val=="2")
{form1.Button.disabled=true}
}
</SCRIPT>
<input type="submit" name="Submit" value="Submit" onClick="Disab (1)">
for disabling a button on submit, but it's only seems to work in IE, can anyone recommend one that works in both IE and firefox?
View 15 Replies
View Related
Jun 7, 2009
i have a button that i want to disable on action . it work's fine in Firefox but not IE6 ,IE7,IE8
this code get the id=button and every 3 seconds (enable --> on click -> disable -> 3 seconds --> enable
var button = document.getElementById('button');
function disable(button) {
button.disabled = true;
setTimeout(function (el) {
[Code]...
the weird thing is if i delete all the html and keep only the code , it works fine on all browsers
View 1 Replies
View Related
Feb 16, 2011
I have a form with submit button, and i want to disable the button while the request the processing....and then after the request has completed, then again it will be enable....How to implement this, to my form?Is there a way to get the acknowledgment after processing the request...
View 1 Replies
View Related
Jul 16, 2010
I want the div to start out completely minimized at 0% height and then when I click the button that calls the function it should increase the size to 100%, once it is maximized I want it to set the height back to 0% when the button is clicked again. Heres what I have so far. I can get it to minimize and maximize itself but I can't get the height set correctly.
<SCRIPT language="javascript">
var y = 100;
var q = 5;
var f = 0;
[Code]....
View 1 Replies
View Related
Apr 25, 2010
in IE, my page gets buggy when the user resizes the window. ive fixed it for when the user clicks and drags the corner of IE, but it is still buggy when the user maximizes the window. i know i can fix this as well if i can just learn to detect the difference on the onresize event between maximizing and all other ways the user can resize it.
View 6 Replies
View Related
Dec 18, 2006
can anyone please tell me how can i disable or remove the X button(i.e.
close button) on the browser. i just want to apply this only to the one web page of my application.
View 1 Replies
View Related
Jul 20, 2005
I was wondering how i would go about disabling the edit button in the IE6 taskbar.
View 3 Replies
View Related
Feb 13, 2010
I have one dropdown list with list of users categories, like this:
Users
Moderators
Super Moderators
Administrators
and I have one Submit button wich is by default disabled. How can I enable it when user select for example "Moderators" from dropdown list?
View 3 Replies
View Related
May 3, 2010
I would like to disable the back button in IE7 and IE8. I assume the best way is to use window.open. I tried below and it disabled the IE back button but doesnt show the menu items, url bar etc.
Code:
<a href="#" onClick="window.open(theURL, 'newpage.html', 'fullscreen=yes, scrollbars=auto')">go to page with disabled IE back button</a>;
View 3 Replies
View Related
Oct 31, 2011
I've setup a test on jsfiddle: [url]
Its a controlgroup with two buttons (2 anchors with data-role='button')
Now I want to disable them, but its unclear how to do this.
View 2 Replies
View Related
Apr 18, 2011
i'm building a register page for my forummy problem faced is i can't disable the DAMN Button! while the user input duplicate or wrong format
<?php
include 'dbconn.php';
include 'Header.php';
[code]....
View 1 Replies
View Related
Feb 28, 2011
I was trying to modify the code-slider plugin so that it would scroll panels that were the size of the entire screen. (the demo on the jquery site has it moving panels that are rather small). So I thought all I had to do was take each div that sandwiches the panel (several are nested) and set their width in code to be the width of the monitor. It did not work.
So I simplified the code to show here. I just have the divs, and their css, and the code that sets them to the width of the screen.
Here's the entire code, css, and html (its not long):
We want the panel to extend the width of the page, and eventually also figure out how to make it extend the height of the page. Then we want to put a menu on top which will scroll from panel to panel, where each panel covers the entire page. The menu would have absolute positioning, so it would stay on top.
Here is another panel, this time in Latin:
View 2 Replies
View Related
Feb 22, 2011
Code... Check out this picture.. i want to make one of my lists to be shown in this way..
whenever you click the '+' sign, the products under the main products will be displayed, and when you click the '-' sign, the products under the main products will be hidden.
View 2 Replies
View Related
Apr 28, 2011
Once a button is clicked i would like to disable it for x seconds. The button adds a div to the page and testing has shown excessive clicking can cause issues and halt the script, which is why i want to disable it.
View 1 Replies
View Related
Nov 23, 2009
I have the following code:
<input type="button" name="button" value="Submit"
onclick="javascript:get(this.myform);">
How can I change this to make this button disabled after the onclick?
View 1 Replies
View Related
Mar 13, 2009
I am writing a prgram in php.when i click "log out "button ,it redirects to my first page "index.php".(username & password)and then by clicking back button in the browser ,it showing all my previous pages that i visited.I want to disable back button in the browser (javascript should support in all browser) using javascript or php
View 3 Replies
View Related
Apr 23, 2009
disable the Close (X) button in title bar. If user wants to click automatically a dialog box must appear with message 'This is disbale'...
View 4 Replies
View Related