jquery

Jquery Slider With Fading

I am thinking about using the easySlider plug-in to create a banner slider on my page but I want to get the effect of the banner images to fade in instead of sliding from right to left. Does anyone know of a good plug-in that will allow this or if easySlider allows this? I read the documentation and it didn't look like it had this option...

form serialize problem

I have a form. I am trying to validate it through AJAX GET requests. So i am trying to send the field values in the GET request data. $('#uxMyForm').serialize(); the problem it is returning something undecipherable. I have used serialize before. This is totally bizzare. the return value of serialize is actionsign_upcontrollersite...

Problems with Fancybox and jQuery

Beating my head blue on this one. The fancybox won't trigger on the preview images below. Everything is set according to manual. http://www.itrosa.se/sv/Utstaellning_i_Trosa_kvarn/article/?i=s7486578460425622 any ideas? ...

Nivo Slide using DIVs instead of IMG

Hello jQuery heros! :-) I've found Nivo Slider to be the best solution for my site. However, I want it to make DIVs to slides, and not IMGs like it does by default. I've tried to change all IMG to DIV in the JS-file, but ofcourse without any luck... Can anyone help me?? /* * jQuery Nivo Slider v2.0 * http://nivo.dev7studios.com * ...

Jquery Live Function

Hi! I want to make this script to work as LIVE() function. Please help me! $(".img img").each(function() { $(this).cjObjectScaler({ destElem: $(this).parent(), method: "fit" }); }); the cjObjectScaler script (called in the html header) is this: (thanks for Doug Jones) (function ($) { jQuery.fn.imagesLoaded = funct...

jQuery Validate Plugin overwrite my select onChange postback

Hi, I'm creating this form (.net) where i have a select with a postback, that will trigger a action depending on which option i select. I'm trying to use the jQuery Validate Plugin (plugin website) to validate my form. My problem is, when i validate the form, and my select is marked as invalid, the validation plugin overwrite it's onCh...

Possible to load Masterpage's Content(aspx-page) asynchronously from Menu?

Hello, first of all: I'm new to Asp.Net MasterPages and jQuery. I have a Asp.Net Project with one MasterPage. I have used this menu for navigation. It's in the header of the MasterPage. Is it possible with Ajax to change the Content-Page from this menu without having the whole MasterPage reloaded(including the Menu)? EDIT: perhaps this ...

Global mouseMove

I have made the following javascript to be used in my jQuery based website. What it does, is to move a slider up/down, and scale the item above higher/smaller. Everything works fine, but since the slider is only a few pixels in height, and the move event is a bit slow (it does not trigger for every pixel) so when I move the mouse fast, ...

Changing href attribute

In need to change a part of this href: <a href="media/xxxxx-yyy.jpg">large pic</a> I have some designs, and some colors, xxxxx stands for designnumber and yyy for colornumber, when one of the designs is clicked or one of the colors the href should change according to the value: <a href="#">design1</a> <a href="#">design2</a> <a href=...

asp.net mvc jquery checking size on file upload

Is there any way to check the size of the file when it is about to be uploaded with jquery ? ...

How to use $.get data to replace certain elements in a webpage?

I'm using jQuery 1.4.2 to navigate smoothly between similar webpages (in ff3). When clicking on a link, a javascript script should load the new html, filter out the right elements and replace them on the current page. It looks like the $(htmlcode) does not do the thing I expected. The actions below work when loading the page directly, ...

how to call a js function from loaded jquery

the function is in the page loading the ajax but i'm trying to call the function codes: [ajax] $.ajax({ type: "POST", url: "loginpersonal.asp", data: "id=<%=request("id")%>", beforeSend: function() { $("#personaltab").hide(); }, success: function(msg){ $("#personaltab").empty().append(msg); }, com...

How to find if a DOM element is attached with some Javascript or not?

For some testing purpose I want to traverse the DOM and want to find if that particular element is bound to some JS. I am using jQuery. I tried with $('selector').data() but with no avail. Can anyone please help me? ...

jQuery: Get <td>'s html only

Hey, i have this code. It returns all the td code including the td /td tags. I want it to only return the content/html of the td <td>Hey</td> should give me just Hey   jQuery("#ReportTable", html).each(function (index, tr) { arr[index] = jQuery("tbody tr", tr).map(function (index, td) { return jQuery(td).html(); ...

jQuery ajax delete script not actually deleting.

I have a little personal webapp that I'm working on. I have a link that, when clicked, is supposed to make an ajax call to a php that is supposed to delete that info from a database. For some unknown reason, it won't actually delete the row from the database. I've tried everything I know, but still nothing. I'm sure it's something incred...

jQuery 1.4.2 - Ajax & increasing IE 8 Process Handles

Hi, I'm requesting every second some data over $.ajax. $.ajax({ type: "POST", url: "ServiceEndpointUrl", data: "", success: function(result) { ... Do Work ... } } } } }); This code leads into an continuous growing number of handles in IE 8 (Windows 7 / verified with Task Manager & Process Explorer). Firefox & Chrome...

putting a jQuery UI Accordion in a jQuery UI Dialog

By creating the appropriate markup for Tabs, I've been able to place a jQuery UI Tabs widget inside a jQuery UI Dialog; but doing the same with an Accordion has not worked: clicking on the anchor of the accordion section causes the Dialog to close. Is there a straightforward way to accomplish this? ...

Problems with datepicker

Hello, I hope you can help me with this. I've been using jquery datepicker in a modal dialog. After some problems at the beggining (given by the z-index) it works just fine. The thing is that I have in my page content that keeps on being modified via .innerHTML property of the divs. For this case, I'm loading the content of the modal ...

Is there a way to designate some HTML content as not managed by jQuery?

In another question, I asked why it takes so long to remove HTML content from a page with jQuery. Apparently when removing HTML content from an element, jQuery has to march through each element and do... something.. I don't know exactly what. And this can take a vvery long time for large-ish HTML content. In an effort to side-step ...

how to determine how many jQuery objects are on a page?

Can I determine the number of jQuery objects on a page? I want to use the number of elements as a sort of weak benchmark for page complexity. I'm thinking that if I can reduce the number of elements that jQuery knows about , the page might run more efficiently. Does this make sense? Is it as simple as doing a * select and countin...