0
votes
4answers
32 views
how to use ajax link in a ajax return HTML unobtrusively
I have a page, with ajax URL on it, ofcourse this page is applying unobtrusive javascript, let's call this page A.
<div id="pageA">
<a href="additem?id=1>Add this …
1
vote
2answers
66 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?
0
votes
1answer
104 views
Singleton Pattern with {}?
I apologize to move it from here as
there was some confusion and thanks to
Grey for answer this to realized the
mistake. The topic has been moved to
http://stackoverflow …
1
vote
11answers
212 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 st …
5
votes
6answers
115 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 suc …
2
votes
5answers
100 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 everybo …
0
votes
1answer
33 views
jqueryui without javascript
Does anyone use jQueryUI (such as the CSS framework part) without the jQuery component? If you were catering for users who don't have javascript or who have it disabled etc
A part …
1
vote
2answers
167 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 click …
8
votes
9answers
418 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 se …
1
vote
5answers
141 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 t …
1
vote
2answers
404 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>& …
0
votes
1answer
23 views
<select> tag reposting
After several failed attempts using ExtJS I have now decided to use javascript.The requirement is to assist a combo box in select tag.If the list contains aa,aaa,aab,abc,bac,cba th …
1
vote
1answer
233 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 => 'Ar …
1
vote
6answers
214 views
Learning JavaScript for a total non-programmer
I code CSS/XHTML like it should be my mother language, and I do write valid, semantic code following guidelines of accessibility and such.
But I want to learn Unobtrusive JavaScr …
7
votes
3answers
704 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 t …
