Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

43
votes
14answers
9k views

So what if custom HTML attributes aren't valid XHTML?

I know that is the reason some people don't approve of them, but does it really matter? I think that the power that they provide, in interacting with JavaScript and storing and sending information ...
27
votes
2answers
13k views

window.onload vs document.ready

what is the difference between window.onload and document.ready.
20
votes
3answers
1k views

rails best practices where to place unobtrusive javascript

my rails applications (all 2.3.5) use a total mix of inline javascript, rjs, prototype and jquery. Let's call it learning or growing pains. Lately i have been more and more infatuated with unobtrusive ...
19
votes
6answers
834 views

Best practice for storing HTML templates on a page?

I'm developing a rather heavy JavaScript interface to a site I'm building, and I've decided to use the (recently made official) jQuery templates plugin to generate my elements from my queries to a ...
13
votes
5answers
750 views

Help, “this” is confusing me in JavaScript

Working with the JavaScript one of the confusing thing is when using this var x = { ele : 'test', init : function(){ alert(this.ele); } } However when dealing with multiple object and ...
12
votes
3answers
4k views

How Does Rails 3's “data-method='delete'” Degrade Gracefully?

Rails 3 does some cool stuff to make Javascript unobtrusive, so they've done things like this: = link_to "Logout", user_session_path, :method => :delete ..converts to <a href="/logout" ...
10
votes
1answer
2k views

Javascript: Module Pattern vs Constructor/Prototype pattern?

I have been reading a little bit about the Module pattern and i wonder if applicable for what i need to do or should i use the Constructor/protoType pattern. Basically I am using unobstrusive ...
10
votes
4answers
5k views

Unobtrusive jQuery autocomplete in Rails

I'm using rails, but doing all my Javascript unobtrusively using jQuery in application.js. Unfortunately, this makes it quite difficult to reference URLs. For example, if I want to give a field ...
8
votes
1answer
3k views

Unobtrusive javascript with jquery - good 10 minute tutorial?

I'm looking for a good 10 minute introduction to Unobtrusive Javascript using JQuery. I'm completely new to the concept, and I'd like to see how the event binding and such works. As some background, ...
6
votes
3answers
7k views

How to check browser for touchstart support using JS/jQuery?

In an attempt to follow best practices, we're trying to use the proper JavaScript/jQuery events according to what device you are using. For example, we're building a mobile site that has an tag that ...
6
votes
7answers
430 views

Unobtrusive JavaScript with server side values, best practice?

I'm used to do doing things like this: <a href="Javascript:void(0);" onclick="GetCommentForGeneralObservation(<%# Eval("ID") %>)"> That would be in a repeater or such like btw. However ...
5
votes
1answer
281 views

Coffeescript and Haml with unobtrusive Javascript (data-remote) in Rails 3.1

I searched le interwebs, but I haven't found someone experiencing the same problem as me, so I propose my question here. I just started using Rails 3.1 with Compass, Haml and CoffeeScript and ran ...
5
votes
1answer
652 views

RequiredAttribute with AllowEmptyString=true in ASP.NET MVC 3 unobtrusive validation

If i have [Required(AllowEmptyStrings = true)] declaration in my view model the validation is always triggered on empty inputs. I found the article which explains why it happens. Do you know if there ...
5
votes
1answer
285 views

What is Unobtrusive Javascript in layman terms?

What is Unobtrusive Javascript in layman terms? An example would be nice to aid my understanding. Thank you in advance ;-)
5
votes
1answer
249 views

How can I implement Ruby's Array.include? in JavaScript?

I have an array tempArray = ["Kathmandu","Pokhara","Dharan"]. To make sure that "Pokhara" is in tempArry, I have to use loop and check every element of tempArray. Is there a way to implement Ruby's ...
5
votes
5answers
305 views

Hrefs vs JavaScript onclick (with regard to Unobtrusive JavaScript)

What is best practice with regard to using links/<a> tags with explicit hrefs to other pages in your site (i.e. href="/blah/blah/blah.html) vs having hrefs/divs/etc. that don't have an explicit ...
5
votes
1answer
751 views

Plugin/Gem to get Rails 3 style UJS in Rails 2.3.x?

I have a new application starting that's using Rails 2.3.8 for stability concerns and gem compatibility, however we'd like to begin being conscious of Unobtrusive JavaScript by implementing the Rails ...
5
votes
1answer
584 views

form.submit() missed by rails.js UJS observer

In a Rails 3 app, I want to make the browser call a remote function whenever a certain checkbox is toggled. In Rails 2, this was easy to do by passing :onclick => remote_function(...) to the ...
5
votes
4answers
5k views

JQuery: Why Unobtrusive JavaScript / Document Ready function rather than OnClick event?

I've just started looking at JQuery. I don't have any AJAX in my web application at present. My existing JavaScript in my HTML looks like: <form ...> <p>Find what? <input ...
4
votes
1answer
361 views

knockout.js: Uncaught Error: No Modification Allowed Err

I start with this (truncated for beauty): <script src="/Scripts/jquery-1.6.2.min.js" ... <script src="/Scripts/knockout-1.2.1.debug.js" ... <script src="/Scripts/knockout.mapping-latest.js" ...
4
votes
2answers
240 views

MVC 3 and “Javascript-Disabled” browsers

I have a requirement to implement a web application using MVC 3, which works on browsers even if javascript is disabled. There are a lot of concepts in MVC 3 which rely on the use of jquery. What ...
4
votes
1answer
932 views

Improve unobtrusive javascript (and possibly use CoffeeScript) in a Rails application

I have an application which uses some Javascript for basic Ajax requests such as autocompletion and live search. For example I implemented live search in the following way; I spotted some potential ...
4
votes
2answers
497 views

Stop custom validator from firing on each keystroke

I wrote a custom validator using MVC DataAnnotations and the jQuery unobtrusive javascript library. It's working great. The only problem I have now is that after the initial validation, if the user ...
4
votes
2answers
397 views

Unobtrusive way to do $(document).ready(…) in rails 3

In one of my views I need to do something upon loading of the page (load google maps JS and then initialize some of my stuff) I can certainly embed this bit into my haml/erb template but is there an ...
4
votes
2answers
496 views

Force unobstructive syntax without Html.BeginForm / Ajax.BeginForm in partial view

When I put a part of my form in a partial view, all form parts get unobstructive syntax except the form elements in the partial view. The only way I found how to "apply" the unobstructive syntax, is ...
4
votes
1answer
426 views

setValidationValues in jquery.validate.unobtrusive not available outside file?

I am extending MVC 3 validation by using custom ValidationAttributes on the server side and have implemented IClientValidatable to output html5 data attributes for my custom validation. I then used ...
4
votes
2answers
230 views

How not to load javascript files when javascript is disabled

[SOLVED] I use to build pages normally without javascript and only then to add javascipt features. This way, I can set all divs with tools that require javascript with display:none and then in the ...
4
votes
2answers
587 views

jQuery Accordion definition list with multiple description items

I can't seem to use jQuery Accordions with definition lists that have multiple desciption items (dd). The author's examples have only single dd items. In the example below B2, B3 & C2 show ...
4
votes
2answers
2k views

Using Google Analytics asynchnonous code from external JS file

I'm trying to add the asynchronous version of the Google Analytics tracking code to a website. I'd like to keep the JavaScript in a separate file, and call it from there. Here's what I've currently ...
4
votes
2answers
189 views

unobtrusive javascript pain points to beware of

I have recently started learning unobtrusive JavaScript. Using JQuery its really fun. However with this thinking of writing JavaScript code has come a real long way from traditional ways. Also adding ...
4
votes
7answers
160 views

JavaScript/HTML: Wiring element events

I recently read a blog post. In it, the author told readers to wire up all their "onclick" events not inline, but when the DOM's ready, like this (jQuery example): <script ...
4
votes
12answers
697 views

Do you plan for javascript being off?

I'm coding a fairly large and complex site by myself, so do you think I need to support javascript being turned off? Its a lot of extra work supporting full page postbacks for stuff I could quickly ...
4
votes
5answers
295 views

Unobtrusive Javascript Obfuscates Event Handling

You know what I liked best about obtrusive javascript? You always knew what it was going to do when you triggered an event. <a onclick="thisHappens()" /> Now that everybody's drinking the ...
4
votes
4answers
1k views

Associating data to a DOM element for jQuery

In a previous life, I might have done something like this: <a href="#" onclick="f(311);return false;">Click</a><br/> <a href="#" onclick="f(412);return ...
4
votes
5answers
293 views

How important do you think Progressive Enhancement is? [closed]

Progressive Enhancement is a web development methodology that not only allows greater portability and accessibility but in my opinion, makes the development process easier. What I want is to know ...
3
votes
2answers
80 views

Form Radio Buttons with Unobtrusive JavaScript

How to transform the folowing code to Unobtrusive JavaScript? <!DOCTYPE html> <html> <head> <title>title</title> <script type="text/javascript"> ...
3
votes
1answer
370 views

jQuery unobtrusive validation in .NET MVC 3 - showing success checkmark

Using jQuery unobtrusive validation within a .NET MVC project and that seems to be working fine. I'm now trying to show a green checkmark when the field validates correctly (client-side and/or ...
3
votes
1answer
60 views

jquery writing unobtrusive javascript help

I have the following code in jquery. $(function() { $('.test').click(function() { alert('this is a test'); }); }); I realize that this is unobtrusive, but I would like to try and make it ...
3
votes
3answers
3k views

Validating an e-mail address with unobtrusive javascript / MVC3 and DataAnnotations

jQuery Validation makes it simple to validate an email address: $("someForm").validate({ rules: { SomeField: { required: true, email: true, remote: { ...
3
votes
2answers
394 views

How do I create an ASP.NET MVC3 validator for minimum and maximum number of checkboxes?

I'd like to have a reusable validator that I can use on a group of checkbox fields that will let me specify a minimum number to be selected and maximum number that can be selected. I'm not sure ...
3
votes
4answers
260 views

ASP.NET Web Forms + jQuery

So, I have been programming with ASP.NET MVC with jQuery for quite some time and am very comfortable working with the DOM for AJAX and programming interactivity. However, I recently started a new job ...
3
votes
4answers
163 views

Hide html only when Javascript is available

I guess this is more about SEO than wanting to support browsers with Javascript disabled. I have Javascript/jQuery code that reads in some html and basically displays it much nicer. The html is ...
3
votes
2answers
641 views

ASP.net MVC3: unobtrusive JavaScript validation

There are a lot of examples on how to "create your own model", mark them with DataAnnotations. Scott Gu explains how to validate your model when using ORM. What I don't find is when your model is ...
3
votes
3answers
4k views

How to use asp.net mvc 3 jquery validate with a jquery dialog that does an ajax submit?

I am using asp.net mvc 3 jquery validate unobstructive javascript. I am trying to write all my validation on the serverside through annotations and then have the new feature of mvc 3 take care of ...
3
votes
3answers
853 views

MVC 3 unobtrusive javascript validation when textbox has a default value

So I have a form working quite well with MVC 3, DataAnnotations and Unobtrusive javascript. However, I want to put a "watermark" on my input fields so that for example, the First Name textbox is ...
3
votes
2answers
775 views

ASP NET MVC: Dynamically adding or removing inputs on the form - unobtrusive validation

Before starting, I do have a very particular question and if you want to answer it go straight to the end. But I do welcome comments and advices hence the lengthy post. OK, we deal with a lot of ...
3
votes
4answers
3k views

jQuery UI Dialog instead of alert() for Rails 3 data-confirm attribute

In Rails 3, passing a :confirm parameter to link_to will populate the data-confirm attribute of the link. This will induce a JS alert() when the link is clicked. I am using the rails jQuery UJS ...
3
votes
3answers
586 views

Problem with AJAX and UJS with jQuery in Rails 3

I am trying to get this working by following the tutorial at: http://net.tutsplus.com/tutorials/javascript-ajax/using-unobtrusive-javascript-and-ajax-with-rails-3/ and the railscast at ...
3
votes
1answer
182 views

Will ASP.NET MVC's new “unobtrusive” JavaScript make my HTML code invalid?

In the past few months, I've read multiple articles about this new unobtrusive JavaScript approach in ASP.NET MVC. You can read about it here. It basically puts everything into HTML attributes ...
3
votes
2answers
477 views

JavaScript: Access own Object Property inside Array Literal

Given an Array Literal inside a JavaScript Object, accessing its own object's properties does not seem to work: var closure = { myPic : document.getElementById('pic1'), picArray: ...

1 2 3 4 5 6