Hi Friends,
I got to work on PHP app which requires a webservice call to an Asp.net webserivce. Client insist to call this webservice with POST directly via jquery.
My knowledge says its not possible to call different domain webservice from JS and I'll have to create a proxy page to consume this webservice.
So I just want to confirm,...
Hi eveyone
I have form with multiple qty fields,I'd like to add the qty but pressing the add button and subtract the qty by pressing minus button, I got it working for one but I can not make it work for multiple qty fields,I have 24 qty fields, any help would be appreciate it.
<form>
<input name="minus1" type="button" ...
usually i have a css file which has the following rule:
#my-window {
position: fixed;
z-index: 102;
display:none;
top:50%;
left:50%;
}
how can i avoid creating such a static css file by adding the css-information during runtime actions to the body or what else. (only using jquery)
i want to define it once but with...
When i use DatePicker, jQuery's UI plugin, in an existing .aspx page i get errors that "$("#datepicker").datepicker is not a function". However, when I copy and paste the same code that creates and uses the DatePicker to an html file that's also in the same directory as the aspx page, it works flawlessly. This leads me to assume that the...
When I run following code:
node = $('.period')
alert(node.width() + ' ' + node.css('width'))
i get '0 144px'. How is that possible?
...
I have a simple search page with a single input box.
I want to be able to trigger the search action either by clicking "Go" or by pressing Enter in the input box. I did it like this:
$("input[name='entry']").keyup(function(event) {
if (event.keyCode == 13) {
search_...
Hi All,
Just starting out with ASP.NET MVC and have come across a stumbling block already.
The situation is that I have a custom ViewModel to pass to the view, which contains a list of items to be rated ( will be using the jQuery star rating ), so these are created using the radio button helper, to have the same name, just different va...
Hi all,
i am calling the function given below on dropping a tag on an area.
If that tag drops successfully it should append an image and on double click it should produce a dialog box.This happens for the first time when i drop a tag but does not work when i drop that second time.
function dropFile()
{
$(".File_div")...
Hi all,
I'm trying to adapt Andy Langton's show/hide/mini-accordion (http://andylangton.co.uk/jquery-show-hide) to work within a table. I'm wanting to create a list of events with a confirmation form attached to each event. Upon clicking on the 'confirm' button in the last cell or the row, I would like the form associated with this pa...
I'm using JQuery UI to drag divs around a container and i want to fire an event when the user releases the mouse (stops dragging).
Any ideas on how to do this would be great. Thanks in advance
-Shawn
...
I'm using jQuery to switch between 'simple' and 'advanced' search panels by sliding up/down the panels. After the slide I want to set the input focus to the first field, however this causes the panel to blank out on IE7. It doesn't happen on FF 3.5.1
The original code is using ASP.NET but I've managed to reproduce it with some simple HT...
I'm kind of new to this so please bear with me...
Let's say I have this javascript code
$(document).ready(function() {
$("a").click(function() {
alert("Hello world!");
});
});
The way I understand it, this code will "capture" any link selection and post an alert box. Normally this works fine.
Now, on the same page I...
MY javascript: Updated Again.
$('.calc').change(function(){
var classArray = $(this).attr('class').split(',');
$.each(classArray, function(){
alert(classArray);
});
});
And the input:
<input type="text" class="calc R#r# C#i#" />
The pound signs are variables, I'm using ColdFusion.
What I need to be able to do ...
I have the following plugin, which takes a partial game name, bounces it off our DataQuery object to get a list of items from the server (basic autocompleter/selector).
The problem I am having is this.
I am using it on a page, where the selector appears in a dialog box. When the user is done, I 'destroy' the selector, and then recreate...
Hi,
I am using Jquery load and then as soon as the content is loaded into the div I want to change some of the tags to language dependent variables.
My problem is that I am having to use a settimeout to get the script to wait long enough for the elements to be ready to edit.
When I use the callback function parameter the elements I wa...
i want hover over an image -> which is in an link
during i'm over the image should popup (like a tooltip) an div, which i can fill also with some stuff - any idea?!
$this is the link which includes an img:
i found the image within and wanted to span a div above the image and make some jquery effects which lets the user get the info, th...
Possible Duplicate:
Where can I find a tutorial to get started learning jQuery?
I am very interested in learning JQuery. Is there any website out there besides this one
that could aid me in learning Jquery? Any good book recommendations would be great too. I love javascript and use it often but jquery is a different beast in its...
I have a page with 2 forms and a hidden field that is outside of both of the forms.
How can the hidden field be submitted with either of the forms?
I thought about doing something like this with jQuery:
<script type="text/javascript">
$(function() {
$('form').submit(function() {
// do something to move or copy ...
I have a gridview with rows that can be edited, inserted etc. I wrapped it in an updatepanel to give it an AJAX effect and update the system without reloading the page. I recently got into using jQuery and webservices for my AJAX calls and I absolutely love how it works and how fast it is. I would like to know if it is possible, and i...
I have a table with a column full of checkboxes. At the top I would like to have a single "Select All" checkbox that would check all the checkboxes on that page.
How should I implement this? I'm using jQuery as my JavaScript framework if it matters.
...