jquery

Validate Select dropdown if checkbox is clicked

Hi All, I am facing this problem of validating drop downs in a lists. There is a list of checkboxes and corresponding select boxes, if a particular checkbox within an <li> is checked, then the corresponding select box should have a value selected, else throw and error. Please help.... The html code is as follow... <ul> <li><input typ...

JQuery access dynamically created objects

Hi there. How can I acceess objects(divs) that were dynamically generated. I mean DIVS that were not present in output when $(document).ready(function() started. If I do: $('#click_me').click(function() { $('#container').append('<div id="clicker2">can you click on me?</div>'); }); $('#clicker2').click(function() { alert('hurray, it wo...

JQuery/JS question: how can I change "x" everytime a bind is called?

I would like to change the variable x to 3 every time the window gets resized. $(document).ready(function () { var x = $("#display_piece_big_frame").offset().left; $(window).bind("resize", function() { x = 300; }); }); Note: x cannot be put outside the document.ready function because it uses jQuery. ...

Javascript link tracking script + Safari

Hi, I'm trying to make a link tracking script. It should work like Google Analytics only it should make posts to our own server. I'm using jQuery for this. The code i have written so far is the following: jQuery(document).ready(function() { var opts; jQuery.fn.trackAllLinks = function(settings) { settings = jQuery.extend({}, jQuery....

Popup using jQuery?

I'm trying to do a pretty simple thing, I believe. I need to popup a success confirmation dialog after a user clicks to add someone to his friends list. Simply there's an add link on the page with the url (mysite.com/add/friendname). I needed to make issue this request asynchronously so I used jQuery.ajax built-in function to send the re...

Jquery Accordion - Manual Activate

Hi Guy, I am using the Jquery Accordion plugin. I would like to when the page is loaded open a certain panel. I am trying to this like so, by identifying it by ID: selected = $("#1") $('ul.accordiontasks').accordion( { autoHeight: false, active: selected }); This does not seem to activate the accordion panel with the ID...

Help with simple jQuery function

Hi, I have this bit of code. What I want is when I click on .delbutton #slide will hide. $(document).ready(function() { var slide = $('#slide') $('.link').click(function() { slide.animate({'bottom' : '0px'}, 500).append('<div class="delbutton"></div>') }); }); $(document).ready(function(){ $('.delbutton'...

can you use jquery datepickers renderCalendar with the multimonth plugin

using jquery date picker you can render specific cells the way you want. (in my case i have a list of dates that i want to highlight as they are important days) i see that datepicker itself supports this here: http://www.kelvinluck.com/assets/jquery/datePicker/v2/demo/renderCalendarCallback.html but i dont see the multimonth implement...

jQuery load question

I'm using jquery load function to scroll between pages of a calender in my page. I'm using this function $(document).ready(function(){ $('a.cal').bind('click', function(e) { var url = $(this).attr('href'); $('div#calender').load(url); e.preventDefault(); }); }); to assign the behavior to an...

Replace current match with its own text in jQuery

I'm using jQuery to replace matched hyperlinks with their link text. That is: <a href="http://stackoverflow.com"&gt;Stack Overflow</a> becomes Stack Overflow I'm trying: $("table.ms-listviewtable a:nth-child(4)").replaceWith($(this).text()) but get a JavaScript error. Any ideas why and how to fix it? ...

Form redirection using JQuery

I want to do this <div id="myform"> <form action="http://www.google.co.in" method="post"> <input type"submit" value="google"/> </form> </div> I want to change the action to someother URL , when a button is clicked. Note that i do not have any id's or name's for this form, i just have the action and method. Any help on this is app...

How can i trace changes made to the DOM by JavaScript?

Hi, I have a large website in development with a large amount of JS in different files. I have come across an issue where something is removing a class from the DOM. I can see it when I view source but not in Firebug. Normally I would place some alerts/console.log calls with the hasClass value but because I have no idea where to start ...

Jquery selectors - filtering ASP.NET gridview

I've got a gridview and some checkbox controls, with the idea that only the rows with the corresponding checkboxes are shown. I've composed this mess of JQuery/javascript which actually does work but offends my eyes, and performs terribly. Is there are a simpler and/or faster way of using the checkbox names to filter by the column text...

Passing XML data in jQuery ajax

How can i send an XML dom from my javascript code to server page(an asp.net page ) using jQuery ajax /post function ? ...

How to align with the text by jQuery?

How to calculate how much px from the left is the text? ...

jQuery Sliders for slideshow

Which is a good jQuery slider for moving a div element. I have come across coda slider and easy slider But neither of these uses jQuery1.3 and continuous auto-scrolls, which are my requirements. ...

jQuery using append with effects

How can I use .append() with effects like show('slow') Having effects on append doesn't seem to work at all, and it give the same result as normal show(). No transitions, no animations. How can I append one div to another, and have a slideDown or show('slow') effect on it? ...

scheduler like google calendar in MVC

I am trying to integrate a calendar plugin like google calendar with custom database and code with asp.net MVC in C#. It needs to handle Day/Week/Month Events in the Calendar as like google calendar. I found the similar plugin in jquery http://www.webappers.com/2009/08/04/jquery-weekly-calendar-plugin-inspired-by-google-calendar/. But...

How to hook json response to html form via jquery?

I'm sure I'm just missing something, but it would be really helpful if someone knows of a way to do this without calling a jquery plugin. Let's suppose I have a simple html form like the following: <form id="mainform" action="form.php" method="post"> <fieldset> <legend>Main Form</legend> <label for="input1">First Input<...

ASP.NET MVC - How to page ajax search results?

Hi There, I am struggling to get to grips with a particular form setup in my asp.net MVC application. Currently I have a page which displays a chunk of data. On this page is a simple form that calls into an action method that returns a partialview when posted (through ajax - jform). This is all very well until I try and add paging suppo...