JQuery :: Disable Code For A Particular Browser?
Aug 29, 2009
I have a chunk of jquery that is working in all browsers except IE.
I know it's possible to target a piece of code AT a specific browser but is there any way to EXCLUDE it from a certain browser?
I'd be happy for IE to just not see this chunk of code...?
View 2 Replies
ADVERTISEMENT
May 6, 2009
I created a test page here: [URL]. But basically the problem is that $("#button").attr("disabled",true);
should disable a input button, and it does, HOWEVER it outputs disabled="" when it should output disabled="disabled".
View 8 Replies
View Related
Feb 18, 2009
Is it possible to disable the browser from refreshing when settings document.location.href
for example here's what i would like to do
if you're at mysite.com you'll click on a link. that link will fire a func that will make the location mysite.com/about however i don't want the browser to refresh. instead i want to write some javascript that will do someother stuff. i know it seems pointless but for the project i am working on it actually make pretty good sense (to me at least LOL).
i don't care about clicking the refresh button or F5 right now. just not having the browser refresh when i change the document.location.
View 1 Replies
View Related
Oct 11, 2005
Can I disable the ctrl + f funtionality in the browsers?
View 3 Replies
View Related
Feb 14, 2007
I have a quiz application made in PHP. The quizzes have a time limit, and i display the time left using javascript in a textfield. I always initialize the timer on document load. I also have a page navigation that switch between pages, and i maintain the time value from the last page.
Now the problem is that if the user clicks on back button of the browser and after on forward, the timer gets reinitialized with the start time, and in this way he can cheat.
Can you please tell me how can i disable all navigation on my page?
View 3 Replies
View Related
Feb 23, 2010
Is there some javascript code I can put on my webpages to prevent visitors at my website from saving a web page to their hard drive, or printing a webpage?
Is there even a way to disable all the menus of their browser?
View 1 Replies
View Related
Aug 16, 2006
how I can disable a menu item such as "save as" in the Internet Explorer or Netscape using Javascript.
View 8 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
Feb 8, 2007
can i add some simple function at the 'X' button (close button) on the browser which will check whether user enter all fields and if not, prompt them to enter.
(i wanna do this so user cant close the window in half way of the form process)
or is there anyway to disable it? or open a window without the title bar?
View 5 Replies
View Related
Nov 4, 2010
I've been tasked with the javascript and layout for an application that uses the browser engine (embedded browser I supposed it is). So it's not the actual browser, it looks like an application. Problem is, you know how you can drag and drop an image or html file into a browser and it will open it? Well, can this be prevented via javascript?
View 4 Replies
View Related
Jul 23, 2005
I would like to disable the ability of the user hold control and click
and get the dropdown menu. I am ultimately discouraging users from
easily getting a copy of the image. I was able to do this and disable
dragging on all browsers I have tested except Safari (Mac).
Code:
View 5 Replies
View Related
Nov 10, 2011
I want to create some web pages in asp.net on which I want to avoid the user to refresh the page.
I have disabled the refresh options using key board event which are as follows:
1) F5
2) Ctrl + F5
3) Ctrl + R
But I want to avoid user clicking on the Refresh Button of the browser.
how can we disable the Browser Refresh button/menu using Javascript?
View 2 Replies
View Related
Oct 19, 2006
I have a form with some text fields that are disabled UNLESS a checkbox is checked. Initially the text fields are disabled and the checkbox is unchecked.
The code is something like this:
Code:
function disableTextbox() {
if (chk.checked) {
txt.disabled = false;
} else {
txt.disabled = true;
}
}
<form action=something.cfm>
<input type=checkbox name=chk onclick=disableTextbox();>
<input type=text name=txt disabled>
<input type=submit>
</form>
When the form is submitted, some validation is performed. If anything fails, I display an error message and show a link to go back (history.back).
The problem that I am having is that when you click on the link to go back, the checkbox on the form is checked, but the text fields are disabled.
You have to re-click the checkbox to update the text field.
View 3 Replies
View Related
Aug 11, 2010
I want to disable the browser close button using java script .
View 2 Replies
View Related
Apr 5, 2009
I need to know if the user close the browser or to open the window � browser without or with a disable close window button How can I???
View 6 Replies
View Related
Aug 21, 2009
I got this problem while disabling Up/Down arrow keys in Mozilla firefox browser useing javascript Given a standard HTML select/option box, I can capture any keypress while the select has focus and stop the select�s option list from changing values in IE but not in Mozilla.
[Code]....
In IE and Mozilla I have no trouble capturing the keyCode, and in IE I can prevent pressing a letter "D" and Up/Down arrows from making the list move to Dead, but the select list will drop to �Dead� in Mozilla. I've tried attaching the event handler to keyup, keydown and keypress, but have yet to find a way in Mozila to capture the keypress and prevent the select list from changing the current selection.
View 6 Replies
View Related
Oct 16, 2007
I am trying to make a webpage where I wish to disable text selection on entire body without affecting text input in a form by user. Though I found a couple of javascripts on the net, they don't seem to work with all three browsers (IE, FF, Opera). Code:
View 5 Replies
View Related
May 11, 2004
if there was a script to disable only the horizontal scroll bar in a browser window on a site with frames?
View 7 Replies
View Related
Apr 13, 2009
After lot of research I found that its impossible to disassemble the source code view in the window toolbar.. but finally I found this site that have the function that I am describing..
Start addy here:
mortgagecalculators.ws
/
mortgage-payment-calculator
.
php
End of addy:
The address is separated in pieces because I cant post links and don't forget to include the extension php with the dot at the end of the address but note that if you click on the back history button and then the forward. The java does not work. I get into the source looking for some java call... but nothing found related to security disable source code...
View 14 Replies
View Related
Nov 28, 2003
are there any scripts on the web that could disable visitors from viewing my web source code? (can java script do this? if not any recommendations?)
View 14 Replies
View Related
May 28, 2010
I have a small doubt in jsp coding..I want to disable certain links on user login.These links come under a menu list.Clarifying more on this..I have created a web application which has got a login page..After login it redirects me to my home page..now when an administrator logs in he/she should be able to view all links on the menu list whereas when an user logs in he/she should only view a certain number of links based on his/her privileges..how can i write this code.
View 2 Replies
View Related
Dec 8, 2009
I have a javascript controlling the display of a DIV that I did a while back that needs a bit more tweaking to add function to hide the DIV on specific holidays. As it is now, by default, the DIV is being hidden unless it is M-F between 8:00AM-6:00PM:
<script type="text/javascript">
Im assuming that I would just add more else if statements, but not really sure the cleanest way to assign specific dates using this format.
View 3 Replies
View Related
Jul 20, 2005
I want to know the height of the viewable portion of a page (minus scrollbar)
in Opera and Mozilla.
For Opera, I could use document.body.clientHeight. Unfortunately, this won't
work in Mozilla because Mozilla also subtracts the sizes of the top and bottom
margins.
For Mozilla, I could use document.documentElement.clientHeight.
Unfortunately, this won't work in Opera because Opera returns the height of
the entire page, not just the viewable portion.
So I have two options:
1) Use browser detection code to determine if the user is running Opera or
Mozilla, and then use the appropriate clientHeight code.
2) Use window.innerHeight. This is supported by both Opera and Mozilla,
however it returns the height of the viewable portion of the page *including*
the scrollbar. Is there any way to determine the width of a scrollbar? If
not, then I would have to make an assumption and subtract the hardcoded width
of the scrollbar from window.innerHeight... but only if the scrollbar is
present, is there a way to determine that?
View 4 Replies
View Related
Nov 10, 2010
I'll be the first to admit, I am not skilled with javascript, but I can do a little work here and there. I remember learning there is a way to detect a user's/viewer's browser. Is there a possible javascript that allows me to detect a viewer's browser, the based on the browser, selects css/html to use so that the website is viewed correctly?
View 9 Replies
View Related
Jul 2, 2009
I wanted to know if we have some validator tool available which can validate our jsp code for W3C standards and for cross browser compatibility for browsers like IE, Mozilla, Chrome.
View 1 Replies
View Related
Apr 1, 2011
In Jsp page some Java Script code is there .When I run the JSp file then java Script code is shown in the browser.
View 1 Replies
View Related