Tagged Questions

39
votes
15answers
93k views

Apple Cover-flow effect using jQuery or other library?

Does anyone know how to achieve the cover-flow effect using JS to scroll through a bunch of images. I'm not talking about the 3d rotating itunes cover-art, but the effect that happens when you hit ...
10
votes
3answers
104 views

Are there any tools for automatically reporting errors from client-side JavaScript?

Are there any automated reporting libraries (or at least an API/hooks I could use) to automatically report JavaScript errors back to my web site? If it can do so without any client intervention, that ...
4
votes
4answers
525 views

Authenticate Windows Authentication using Javascript

I have to transfer my client from one website to another website. This happens in client side. In this 2nd website, its using windows basic authentication system. So It popups the login window. I need ...
1
vote
1answer
26 views

How to implement web-based Anonymity-Tests?

I recently came across some websites that demonstrate which information can be obtained from a user's system and show how 'anonymous' one is. For example these two sites here: ...
1
vote
1answer
47 views

Why is this Ajax conditional dialog not working?

Why is this code not working? In the meantime (trying to make it work) i have changed it a dosen time, but i can't find the solution. Anyone has an idea? I have no errors in console. First of all, ...
1
vote
1answer
505 views

determine which tab clicked in DevExpress Pagecontrol at clientside

Using the DevExpress ASPXTabControl, How do i determine which Tab has been clicked with Javascript on Client Side. I've got multiple tabs, each containing a callback panels which loads data. This is ...
1
vote
2answers
133 views

Can Javascript be replaced with another language? [closed]

Possible Duplicate: Alternatives to JavaScript Hi there, As there are many programming languages, and you have options, that which ever language you want to work on, like you if you use C# ...
1
vote
2answers
205 views

Requesting a website by client side script = Cross Side Scripting Hack. But requesting a website by server side script is not a hack! Why?

Generally, when we want to show the contents of some web page in the same page, we go for ajax requests. If say, I request to a web page in different domain with AJAX, it is not allowed because of the ...
1
vote
1answer
40 views

Metaprogramming on web server

From time to time, I find myself writing server code that produces JavaScript code as the output result. I can point out why it is really bad: Inextricable tie between server code and client code. ...
0
votes
2answers
76 views

My ASP.Net TextBox has an auto-generated name, which means I can't use it in client side scripts… how do you use both server and client side code? [closed]

Possible Duplicate: Need the clientId of a textbox inside a content control using javascript I have a script that needs to access a TextBox, but ASP.NET generates some crazy names: ...
0
votes
3answers
88 views

Optimizing javascript for loop

So i have known for a while that for ( var i=0, len = myArray.length; i < len; i++ ){ } is more efficient than for ( var i=0; myArray.length; i++ ){ } for large arrays. But have wondered ...
0
votes
2answers
84 views

adding image namespace in svg through JS still doesn't show me the picture

after working out getting the parameter through a scaled version of a picture, I am trying through Javascript adding the picture with the original size parameter in SVG. Firebug shows me the element, ...
0
votes
3answers
167 views

Creating a fully functional website while only using vanilla coding

When I say "Vanilla Coding", I am referring to websites that don't utilize server side coding (such as PHP, ASP, etc.), only HTML, JavaScript, and CSS. I know that there are a plethora of sites that ...
0
votes
0answers
134 views

How SyntaxHighlighter works?

I'm trying to understand how SyntaxHighlighter works. I've downloaded the source code, and seeing it, but since I know the elementary Javascript, so I'm facing difficulty understanding it. Few things ...
0
votes
2answers
654 views

Open Source client-side Shopping Cart - jQuery/Cookies

I am looking to implement something that appears to have "shopping cart" functionality, but is completely on the client-side. I can do this using jQuery and cookies (and I event found this Smart Cart ...
0
votes
2answers
172 views

How to dynamically pass a variable to a 3rd party tracking pixel

Here is what I'm dealing with. I require a way to dynamically pass a variable or value (sale amount and order id) to a 3rd party tracking pixel for my cost per sale campaign as I am using affiliate ...
0
votes
1answer
347 views

Generating Dynamic web pages without server side scripting

I am trying to control a media device which has lot of multimedia content that it can play using another device(remote control device) like an ipad connected to the LAN. (UPnP) I want the media ...
0
votes
2answers
68 views

Is using JavaScript for repetitive HTML bulks good?

Let's say you have a menu that's the same for all pages of a website. Should you use client-side or server-side scripting for that?
0
votes
3answers
71 views

javascript conflict on accesing DOM

i read this statement from a book i read The Document Object Model or DOM is really not a part of JavaScript but a separate entity existing outside it. Although you can use JavaScript to manipulate ...
0
votes
1answer
892 views

how to truncate HTML encoded text without truncating encoded characters using javascript

I need to write some client-side javascript for a webpage that will truncate the text inside a div, when the onclick event for a button is fired (the purpose of the button is so that users can toggle ...
-2
votes
2answers
132 views

add text within td tag in IE using jquery

I have the following HTML code <td class="testclass"> </td> I'm trying with the following jquery: $('testclass').each(function () { $(this).text("testtext"); }); This code is working ...