0
votes
2answers
56 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
5answers
28 views
Using Javascript to Measure the Current Window
Ok, so I'm trying to build a website in which a large picture is the background. I want to be able to load a different size picture based on the user's window size so they (hopefully) don't see any …
0
votes
1answer
11 views
how can we perform reset function in master page of aspx page?
function reset1()
{
alert("123");
document.form1.reset();
return false();
}
i want to reseting controls of master page.. using …
5
votes
7answers
139 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 …
0
votes
1answer
27 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
24 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
53 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
92 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
227 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
41 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
111 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
227 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
162 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 …
