Tagged Questions
The javascript-disabled tag has no wiki summary.
5
votes
9answers
904 views
Javascript disabled best practices?
I would like to know if anyone optimizes their web pages to have some friendly behavior if the user has Javascript disabled. Are there any tricks to provide some pseudo-scripting behavior in such ...
3
votes
3answers
48 views
How to make div suddenly show if JavaScript is disabled even if page has already been opened
I know how to display content if JavaScript is disabled, but what I want to do is make a div suddenly appear even if the page is open at the time of JavaScript being disabled.
The page is opened.
...
3
votes
1answer
1k views
ASP.NET Custom Button Control - How to Override OnClientClick But Preserve Existing Behaviour?
So i have a ASP.NET 4 Custom Control called "SafeClickButton" which is designed to override the default behaviour of the client-side click (OnClientClick).
Essentially i'm trying to disable the ...
2
votes
3answers
232 views
Javascript Disabled - Use Different stylesheet?
I have a jquery slider that works great with a few pictures. The client would like the pictures to stack in a downward fashion when JS is turned off. The problem is I have a title for each picture ...
2
votes
3answers
767 views
HTML5 in IE6 when JavaScript is disabled
My site uses an HTML5shiv for the benefit of Internet Explorer 6 users. What will happen if they have JavaScript disabled?
Will the CSS for my fancy new elements (video, article etc) still work?
1
vote
3answers
85 views
How do I prevent double-clicking in ASP.NET MVC without using JavaScript?
Yes others have asked similar questions, however, the end solution was using JavaScript. I have that working, my question becomes what happens when the user has JavaScript turned off? I would hope ...
1
vote
6answers
171 views
Hide element only if javascript is enabled
I have a view that displays a textbox as follows:
@Html.TextBoxFor(m => m.CodeGuest, new {style = "display: none"})
it is displayed via javascript (so the user clicks a checkbox).
If javascript ...
1
vote
2answers
812 views
how to disable tinymce editor
I want to disable tinymce editor using javascipt function. Actually i have two radio button 1] On & 2] Off.
When user select the Off Radio Button my tinymce editor should get readonly/disabled ...
1
vote
1answer
78 views
Is a request for the .js files still made if a browser has JavaScript disabled?
When a browser has JavaScript disabled, is the request for the .js files still made to the server (ie the files still end up downloaded on the client, but not parsed) ?
The reason I'm asking is to ...
1
vote
1answer
172 views
asp.net mvc: handling no-javascript
I'm working on a asp.net mvc2 app. I have been using jquery to do various different things in all of my views. They are work from a regular browser quite well. But I'm trying to figure out a good way ...
1
vote
1answer
48 views
What strategy should I use for multiple room booking selection without JS?
The user requests 2 rooms on the initial page and is then presented with room types to select from on step 2. The arriving and starting dates will always be the same, but the number of adults and ...
0
votes
3answers
27 views
Jquery - On Click on div trigger ajax post and wont disable clicking afterwards
I have a simple div that i use to trigger an ajax post. I call the object by one of it's classes when it is clicked. When i submit and render the same object again i dont want it to be clickable so i ...
0
votes
3answers
65 views
Background is only shown when javascript is disabled by user
I'm working on this website wich relies heavilly on Javascript and jQuery (http://windowsnaarlinux.nl/). The problem is that all those object are made visible with an effect using jQuery. So when the ...
0
votes
2answers
81 views
disabled cell's button click event fire
I have a table in which there is a button in one cell . Now when i am disabling that cell, the cell gets disabled but on clicking upon that cell, button click event is happening. So instead of ...
0
votes
3answers
86 views
Possible to apply some CSS only to users with Javascript disabled?
The title pretty much says what I'm looking to do, but to elaborate a little more, I want to apply some CSS to a class called prochart-colitem for users who do not have javascript enabled.
The ...
0
votes
1answer
499 views
MVC3 Ajax.BeginForm with javascript disabled
I'm having a problem getting a form to work without javascript being enabled.
This should be enough to go on, ask if you need to know anything else - I don't want to just put the whole solution up ...
0
votes
1answer
287 views
add a text field on click of a link: javascript disabled
How do I add a text field on click of a link inside a form when javascript is disabled? It should not refresh the page and should store the form values which are present earlier.
0
votes
2answers
222 views
how to send the value of “text box” even if it is grayed out/disabled in HTML?
I m doing like this in java script :
document.getElementById(XYZ).value = '32768';
document.getElementById(ABC).value = '32768 ';
document.getElementById(XYZ).disabled = true;
...
0
votes
1answer
180 views
repeater control when javascript is off
I have a repeater which nests one or more custom control instances. Each custom control instance has a drop down and a button called "Update".
This all works fine when JS is on.
However with JS ...
0
votes
1answer
221 views
jQuery - Disabling and Enabling Form Elements with Buttons
Hey all, thanks in advance for the help.
This is my code:
$(document).ready(function () {
$("#showexistingcust").button().click(function () {
$('#newcust :input').attr('disabled', ...
0
votes
2answers
71 views
how could javascript be partially disabled?
I am seeing something weird in some logs and I was wondering if someone could suggest how this could happen. I am looking at error logs sent from the client-side of a web application.
The logging ...
-2
votes
3answers
70 views
Waterproof methode to block non-javascript users
is there a waterproof methode to block users that disabled JavaScript in the browser?
If I do a check with cookies, an user can add a cookie manually.
I need this check, because a JavaScript JQuery ...