Hello,
I am currently attempting to use Jquery Uploadify in order to upload multiple files to my server.
I need the server to send an email notification after the upload has been completed; however the problem is I need to use the multi function which at the moment causes the server to send the email each time at the end of each differe...
Why isn't this piece of code working?
$("#TextOne").animate({ color: "#FFFF00" }, 800);
When i call it on a button click it does nothing. I have Chrome.
...
Hi,
I have an array that contains 10 elements, each element contains " ".
How do I create a string of spaces, like this:
" "
in javascript or jQuery from the this array?
Thank you
...
If I have a table with a lot of cells, lets assume 50 rows x 50 columns, is the application of a jquery "droppable" to each cell inefficient?
Can I assign the droppable to the parent TABLE, for instance, and then somehow capture the actual element (ie. the TD) where the item is dropped? If I remember my event delegation correctly, in an...
i wanted to reload an element whenever there is a click event on any form element. can anyone help me with the jquery syntax?
something like
function addClickHandlers() {
$.publish('refreshDiv');
}
where the div's reloadTopic is set to refreshDiv
thanks
...
I am using jScroller to show a marquee.. It works fine but it always sticks my div to top of the page rather than the exact position of the div....
<div id="CaptDiv"> // this div is at the centre of my page
<div id="CaptionDiv" class="captiontext">
Find your Leads to Precede and Predate
</div>
</div>
and i have applied...
Following on from my previous two questions:
http://stackoverflow.com/questions/3310387
http://stackoverflow.com/questions/3307520
I have a jQuery UI 1.8 autocomplete box in my form, and for the most part it works like a charm. The one problem I have is that if I enter a valid name, but do not select the choice that appears, then the ...
Hello,
I'm using asp.net mvc with jquery. I'm trying to make a formpost and just update the ascx that making the post.
I'm making the post with following code:
$(document).ready(function() {
$('#search-form').submit(function() {
var form = $('#search-form');
var action = form.attr('action');
var serializedFo...
HTML:
a#myname
div#tooltip-myname
a#yourname
div#tooltip-yourname
jQuery:
$('#myname').tooltip($('#tooltip-myname'));
$('#yourname').tooltip($('#tooltip-yourname'));
How do I automate the tooltip container part so I don't have to manually enter '#tooltip-myname' '#tooltip-yourname' and so on with each tooltip?
Thanks!
...
Hi All,
I have a form which I'm using jQuery to post and working to handle the return data.
I currently have the following :
$.ajax({
type: 'POST',
url: '/',
data: $("#register_member_form").serialize(),
success: function(data){
if (data.search(/error/) >= 0)
{
var err = "There were errors found...
Hi,
I'm looking for a jQuery plugin but I'm not sure which I should use to get the desired effect.
Essentially I'm looking to copy the TabularInline style data entry table from Django, but also allow the user to drag-and-drop re-order the position of the inlines.
I'd also need the ability to add a new row.
Which would be the best plug...
As above, how can I remove all of the required rules from a form using jQuery Validate?
This is what I have at present:
var settings = $('form').validate().settings;
//alert(settings.rules.toSource());
for (var i in settings.rules){
alert(i);
delete settings.rules.i;
// ^ not sure about how to do this properly,
// and...
I'm having a few issues with our old friend IE6. The site I'm working on is for a public sector client so it has to support IE6. The slider is fine in IE7+, Firefox, Safari and Chrome. I've tried everything that I can think of but I'm drawing a blank! Can you help?
IE6 on a PC.
Chrome on a Mac
...
I've been asked to show the results of an image d/b query as a coverflow-y type horizontal scrolling gallery of thumbnails (256px long-side,c. 25kb each). If a library is needed (likely), I'll use jQuery. Besides an image the gallery will likely show some caption (text) data.
Problem is, user's query could unwittingly pull 000s of resul...
Simply put, is there a way to have fullcalendar scroll to the current time position in the week view?
If it helps, I'm using Ruby on Rails and jQuery
...
Hi,
I cannot find a solution for that, I need to override a previous setted submit event handler. In my example, I have a iframe page, with their own submit (which can have validation errors, and return false). So, I'm need to do:
$('<iframe></iframe>')
.load(function() {
content = $(this).contents()
form = content.fin...
How can I remove round corners created with jQuery corner plugin?
...
i am trying to use variable inside body. just see below sample code
<body>
<div class="demo">
<script>
var count = 4;
for(i=1;i<=count;i++){
var varSlid = "A"+i;
$('.demo').append('<div id= varSlid ></div></br>');
}
</script>
</div>
</body>
but it is throwing errors. please check and tel...
Ok, I have removed my code from here in favour of uploading the lot here:
http://www.project-vanquish.co.cc/jRPGrid-v0.4b/index.html
(please ignore any SQL errors)
Clicking on a Grid-Node - moves the character to the position (boundries enabled)
Dragging the character - moves to the position (boundries enabled)
Using the keyboard curs...
I’m new to jQuery, so I want to know how I can get started with it, or where to start from.
I have good knowledge of HTML, CSS, DHTML and JavaScript.
...