5
votes
7answers
132 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 …
0
votes
1answer
17 views
Javascript: Event Listener mouseout
Hi guys,
let me explain my problem. I have a mouseout event assigned to a div tag with an id of calendar. Now when this handler is called (when the mouse is not over the calendar …
0
votes
1answer
16 views
Javascript validation For .net dropdownlistbox control?
i have 3 dropdownlistbox..
1.country
2.state
3.cities
when i am seleting country name.. as per it..state name and city name change. in that if i am
changing state name then city …
0
votes
4answers
43 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
73 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
107 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
219 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 …
0
votes
1answer
36 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 …
2
votes
5answers
106 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 …
1
vote
2answers
192 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 …
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
5answers
152 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 …
0
votes
2answers
85 views
Unobstrusive JavaScript for Digg button?
I want to add the Digg button on my webpage but don't want to add the script tag directly on the page.
<div class="digg">
<script type="text/javascript">
digg_url …
1
vote
5answers
89 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 th …
1
vote
6answers
218 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 …
