0
votes
1answer
36 views
how to prevent conflicts between mooTools and Prototype
Hi All,
I know that jQuery.noConflict() is used to avoid conflict between $ of any other library and jQuery.(i.e. Prototype)
But lets say, by any chance I am using Prototype, MooTools and jQuery.In …
0
votes
1answer
22 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 div), i want to …
0
votes
1answer
21 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 name is changed in …
0
votes
4answers
48 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 item</a>
…
1
vote
2answers
82 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
108 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
…
1
vote
11answers
223 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 …
0
votes
1answer
40 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 particular scenario …
2
votes
5answers
107 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 …
5
votes
7answers
134 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 …
1
vote
2answers
208 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 …
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 then if I type 'ab' …
1
vote
5answers
156 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 …
0
votes
2answers
87 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
2answers
460 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>
…
