Tagged Questions

40
votes
15answers
94k 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 ...
2
votes
1answer
175 views

Using primary keys with grid data and jQuery Templates

What is the best way to associate a primary key with a table row when using client-side templates, like jQuery Templates? Should I do some kind of data binding or something? Or should I embed and ...
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, ...
0
votes
1answer
60 views

$.ajax not working with IE and working fine with Mozilla

i have a following code which runs fine with Mozilla but give object undefined error when run on IE here is the code $(document).ready(function () { $("#button").click(function () { ...
0
votes
1answer
49 views

Alternate option for RegisterClientScriptBlock, Is going for 100% javascript good option?

i have following situation try { // do something } catch(Exception e) { RegisterClientScriptBlock(); // **can i do this using Jquery replacing RegisterClientScriptBlock** } i have aspx ...
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
660 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 ...
-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 ...