i want to have a special kind of slider that contains elements like this one:
http://jqueryfordesigners.com/coda-popup-bubbles/
the differences are:
you can scroll with your KEYBOARD right pile and left pile.
the slider jumps to the next element and NOT the next set of elements.
the element in the center will be LARGER than the other...
I'm using selenium in my test suite, but since it's slow to set up, I'd like to prototype my xpaths on live pages, rather than waiting for tests to run. Is there a good way to do this?
Firebug's $x xpath seems to not work very well
jQuery doesn't seem to support Xpath selectors natively, though it used to in version 1.2.
using the nati...
I came to see that form file input field value cannot be set with javascript for security reasons.
I just want to copy a FILE input to another form and post it, I searched for a work around and could not find anything, is it possible?
UPDATE: my code:
function prepareUpload( filevalue ){
document.getElementById('logo').value =fileval...
Hi,
I need help in how to set webform control proprieties in asp.net and ajax control using javascript.
I have asp page that has checkBox, TextBox, MaskedEditExtender, and RegularExpressionValidator.
I set the mask for MaskedEditExtender as Mask="(999)999-9999" and I set the ValidationExpression for RegularExpressionValidato...
I'm trying to construct a javascript array from a db query. Each item in the array is a string that can contain many different characters that mess up the array. Single quotes, double quotes, parens, etc...
Here's an example of my current output:
var titleList = new Array('Fallout: New Vegas Teaser-Trailer HD','Saints NFC Champions','B...
Can any one tell me the complete cross browser solution to print the contents of iframe.I followed the following links.But it is not working in chrome 3.0 browser & IE8.It is printing the entire page.
http://stackoverflow.com/questions/472951/how-do-i-print-an-iframe-from-javascript-in-safari-chrome
http://stackoverflow.com/questions/1...
A friend of mine uses a web-app for work related purposes.
The app's built using PHP/MySQL , and while it has some JavaScript to make it easier to work with, it's not user friendly enough, and with a bit of extra JS, a lot of stuff could be automated.
I would like to enhance that app, but I'd like to not have to modify the original ser...
i have this function
function notify()
{
alert('oo');
$("#SuccessNotification").dialog({
bgiframe: true,
modal: true,
title: 'success',
buttons: {
Ok: function() {
$(this).dialog('close');
}
}
});
}
the ale...
Hi Guys,
I am working on a new system and am stuck at a point with jquery + ajax and getting it work work correctly with the other things happening on the page.
Basically the page is to submit a quote and on the page you can add as many quote items as you want. When someone clicks on new item it runs the below code wich gets the value...
Hi,
I have this web application which does the following as standard to all websites
Users browse to any page on the website
They click on login link on header from any page
Visit login page and then login and get directed to their logged in page
IF user then hits back button they get to login page and that redirects to home (because...
I need a good stack implementation in JS. Pref jquery
Please help
...
I'm trying to learn asp.net MVC and got stuck on this. I have model that contains a DateTime value in UTC (OrderDate). I would like to add the local time offset (lto) to this OrderDate so that the client see OrderDate in his local time zone.
My approach is to use a Javascript as follows in the master page header:
function GetLocalOffs...
I have started with the project where I am suppose to use client side scripting @ extreme.
this is the scenario :
There are two drop-down lists in my form on my web-page ..one is COUNTRY and other is STATE.
The drop-down list STATE must be disabled untill One of the values in Country is selected and According to the value selected in dr...
how to get checked check box count in a div using javascript
...
All,
I have the following code ,
<div id="show" display="none"></div>
var ele=document.getElementById('show');
ele.style.display='block';
ele.style.padding='1px';
ele.style.borderLeft='solid 1px #d0d0d0';
ele.style.borderBottom='solid 1px #a0a0a0';
ele.style.position='absolute';
ele.style.borderTop='sol...
Hi, I am currently doing an A level computing project, in which I need to parse XML and put the elements into an array. I am using JavaScript in Dreamweaver and the final application will be run in AIR. I am having a hard time understanding the code in this answer to another question: http://stackoverflow.com/questions/649614/xml-parsing...
Hi,
I am using the ICallBack Interface and on the client side i need to send an object to the server method
My object is a custom javascript object
Example
var person=new Object();
person.Name='Francis';
person.ID='007';
How do i pass this and decode it exaclty in the same format without using hidden fields ?
Thanks
Francis P.
...
I cannot find how can I attach an timeout option to the Ajax prototype call or what is the default value for it.
...
hi all,
i'm looking for a good/lightweight gallery script.
jquery, plain javascript or flash. any ideas?
it should be possible to display thumbnails and click for bigger view,
but also possibility to click through a series of images (previous/next button)
thanks
...
UPDATE: Ok so although I haven't solved this problem exactly, but I did figure out a work around that handles my biggest concern... the user experience.
First the video doesn't begin loading until after the viewer hits the play button, so I am assuming that the duration information wasn't available to be pulled (I don't know how to fix ...