8
votes
9answers
486 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 …
7
votes
3answers
835 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 …
5
votes
7answers
142 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
4answers
2k 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
3answers
362 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 …
3
votes
2answers
682 views
Does Low Pro Prototype DOM Builder work in IE?
Dan Webb's Low Pro UJS extension to Prototype offers the following elegant DOM Builder:
var listItem = $li({ id : 'item-1' },
$strong("Some text")
);
// returns a …
3
votes
3answers
310 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, …
2
votes
5answers
117 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 …
1
vote
2answers
97 views
Why do the Rails helper methods prevent “unobtrusive JavaScript”?
I heard Ryan Bates say that the Rails JavaScript helper methods prevent "unobtrusive JavaScript".
Is this correct and, if so, could someone explain why?
1
vote
11answers
229 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 …
1
vote
2answers
241 views
Disable link with the prototype observe method…
I want to create a link like this:
<a href="http://example.com">text</a>
and replace the behavior so that the link downloads the content with Ajax instead when clicking.
It is …
1
vote
5answers
164 views
How to generate different links on web page if JavaScript is enabled?
I am trying to follow tecnhique of unobtrusive JavaScript / graceful degradation. I'd like to serve page with different links when JavaScript is turned on, and when JavaScript is turned off.
For …
1
vote
2answers
466 views
Calling javascript from sifr replaced anchor tags?
I'm using sIFR to replace my navigation text with a new font:
<ul>
<li><a href="#">about</a></li>
<li><a href="#">reel</a></li>
…
1
vote
1answer
303 views
How do I get a Rails link_to_remote tag to make a DELETE request when JavaScript is disabled?
I'm using the following code as a link to delete a todo in a simple todo list application I'm making:
<%= link_to_remote 'delete', {:url => complete_todo, :confirm => 'Are you sure?', …
1
vote
5answers
92 views
Where to insert script blocks
The dillema is like this:
If I try to fit all the scripts blocks on the masterpage (include page in some frameworks), every page gets a copy of every script (including the ones they don't need) and …
