Non-js Compatible Or Not Non-js Compatiable?

Sep 19, 2006

this is more like a business question than a programming question. I see how lots of people here say that you should do a non-javascript version of your site first, and then start to put in the AJAX and javascript bells and whistles. This way it still works if someone has got javascript disabled.

But if you think about that in a real world situation, you only have so much time to spend at a project to complete it. I would rather spend it all on featuers that people will actuall use than on something that 95% of the people will never use, simply so i can be "compatible" which will not make me money.

Think about this, it will take up at least 40% of the total time you spend at your project to make it non-javascript compatible. Personally I have some forms which ask for a category name and a button to add it, and if you click it, the category is added on the fly with javascript.

If I was to make this non-js comatible, I would have to have the form submitted when the click the button, which is fine, except everything else they wrote in the form before they clicked that button would be lost and it'll be an extra headache to keep track of that. Very boring and hardly profitable.

View 6 Replies


ADVERTISEMENT

Compatible For All Browsers. How?

Jul 23, 2005

I have this code here that reads in a javascript file and increases or
decreases font by its relative size (same thing as View, Text Size,
Large, small, etc.) I am developing this for Transport Canada and I
need some help. Here is my code. I need it to be compatible with IE,
Mozilla, Netscape and Opera. Most versions of these browsers has to be
compatible. If you could help me out the least bit would greatful.
Here's the code:

View 3 Replies View Related

JQuery :: Is 1.3.2 Backward Compatible With 1.1.2

Jun 27, 2009

I have to work width a code that contains 1.1.2 Jquery scripts,namely:

jquery.js
jquery.hoverIntent.js
jquery.dimensions.js

[code]....

View 1 Replies View Related

Old .js Script Not Compatible With Firefox / What To Do?

Apr 19, 2009

I have a .js file that needs to be updated and am not familiar with javascript files (or if the .js file is even the problem). The problem occurs when users browse our site (www dot parasec dot com) using firefox as their browser. When they go to the top menu, the drop-downs appear to the far left of the window.

View 12 Replies View Related

Make It Compatible To Firefox?

Jan 26, 2010

I wrote javascript code in my webpage. But its not working in the firefox.

How can i make it compatible to firefox.

View 2 Replies View Related

JQuery :: Slideshow And Captcha Not Compatible?

Jul 26, 2010

I downloaded and installed Securimage's Captcha code, and then my jQuery slideshow (by Jon Raasch) stopped working. I'm new to jQuery and am really a javascript noob to begin with, so I don't know where to begin. I looked at slideshow.js and prototype-1.6.0.2,js to try to find some conflict and I can't find anything obvious. I know that the Captcha code is the problem because when I comment out the <script>, the slideshow starts working again. he site I'm working on is here: [URL]

View 5 Replies View Related

Marquee Tag On Page Not Compatible With All Browsers

Dec 22, 2009

I have a marquee tag on my page that slides in some text from right to left once and the stops and remains on the screen. Have a look at the website although it is still being worked on [URL] As you can see it works just fine in IE but goes nuts in firefox. Any javascript to replace the marquee tag so it works exactly the same and is also cross browser compatible.

View 4 Replies View Related

JQuery :: Datepicker Plugin And UI 1.8.2 Theme Not Compatible?

Jul 7, 2010

I'm using Keith Wood's datepicker jQuery plugin v.4.0.2 (not the jQuery UI datepicker) with jQuery 1.4.2, and I want to use the jQuery UI Cupertino theme v.1.8.2.

I reproduced the example on this page [URL]... under the Layout/Style tab. The inline example worked, but the popup example failed.

I tried many permutations and combinations of loading .js and .css files, none of which worked. Would someone please point out the error of my ways? Code snippet and screenshots below.

[Code]...

View 4 Replies View Related

Cross Browser Compatible Drag/drop

Mar 3, 2007

This drag/drop code will work in IE and FF, and most likely Opera too...

All you have to do is insert the following code in between the <head></head> tags and set any element's class attribute that you'd like to render draggable to "dragdrop".

CSS...

<style type="text/css">
.dragdrop{
position:relative;
cursor:pointer;
}
</style>

Javascript...

<script language="javascript">
var mousedown=false;
var obj=null;
var omx=0;
var omy=0;
var oox=0;
var ooy=0;

function getEvent(e){
if(!e){e=event;}
return e;
}
function getObj(e){
e=getEvent(e);
if(navigator.appName.indexOf("Netscape")!==-1){
return e.target;
}
else{
return e.srcElement;
}
}

document.onmousedown=function(e){
e=getEvent(e);
obj=getObj(e);

if(obj.className!=="dragdrop"){
obj=null;
}
else{
mousedown=true;
omx=e.clientX;
omy=e.clientY;
if(navigator.appName.indexOf("Mozilla")!==-1||navigator.appName.indexOf("Netscape")!==-1){
oox=obj.style.left;
ooy=obj.style.top;
}
else{
oox=obj.style.pixelLeft;
ooy=obj.style.pixelTop;
}
}
}

document.onmouseup=function(e){
obj=null;
mousedown=false;
}

document.onmousemove=function(e){
var e=getEvent(e);
if(mousedown==true){
oox=oox.toString().replace(/px/,"")*1;
ooy=ooy.toString().replace(/px/,"")*1;

obj.style.top=ooy+e.clientY-omy;
obj.style.left=oox+e.clientX-omx;
}
}

</script>


You can preview this script in action here...

View 3 Replies View Related

Make Site Compatible With Script Disabled?

Jan 8, 2011

Could someone tell me how to make this site: http://webpages.charter.net/jelsinge...e/history.html compatible with those who use the Internet with JavaScript disabled? I really want to have the slideshow but is there a way I can have the site look good if someone disables JavaScript?v

View 5 Replies View Related

JQuery :: Validation Plugin With Django (New) Forms (V1.0) - Are These Compatible

May 5, 2009

JQuery newbie question re using validation plugin with Django newform.I have a simple email feedback contact django form that I wanted toenhance with some JQuery validation. I created a standalone (NonDjango) version of the form and it works correctly.However when I create a Django version of the form the validationrules seems to be ignored and the form is always posted - I wouldexpect the form to fail, and never post. One difference (not sure ifit's siignificant) is that the Django forms are created from classes/templates and render as tables. However the exact same HTML code worksfor the basic form.I'm now thinking that there must be something different re how thesubmit is being processed for the Django form - but I'm stumped.

View 4 Replies View Related

Making Sortable Table On Website (Compatible With All Browsers)

May 11, 2010

I am using the following code to make a sortable table on my website. I got the code from [URL] (I admit it is not my code but it suits my needs well). Since I know most people do not what to click on links to random sites, this is the code I am using :

HTML Code:
<HEAD> <script LANGUAGE="Javascript"> <!-- This script and many more are available free online at --> <!-- The Javascript Source!! [URL] --> <!-- Begin function setDataType(cValue) { // THIS FUNCTION CONVERTS DATES AND NUMBERS FOR PROPER ARRAY // SORTING WHEN IN THE SORT FUNCTION var isDate = new Date(cValue); if (isDate == "NaN") { if (isNaN(cValue)) { // THE VALUE IS A STRING, MAKE ALL CHARACTERS IN // STRING UPPER CASE TO ASSURE PROPER A-Z SORT cValue = cValue.toUpperCase(); return cValue; } .....

For some reason the code only works for IE, is there an easy way to get this code to work for other browsers such as Firefox or safari?

View 3 Replies View Related

Best Cross Browser Compatible Swipe Script For Android , Iphone And Other Touch Phones?

Jan 20, 2011

I'm looking for the best cross browser compatible swipe script for android, iphone and other touch phones. Has anyone used any of the available frameworks or have you used custom scripts? [code]...

View 1 Replies View Related

JQuery :: Good Web UI Component Libraries - Cross Browser Compatible And Have Good Documentation

May 10, 2009

Are there any good web UI component libraries -open source or commercial - that you can recomment? They need to be cross browser compatible and have good documentation. Jquery UI is very good but limited in number of controls it offers. YUI is very verbose and very hard to use. extJs only other one I can think of. Any others you use and like?

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved