jquery

jQuery fullCalendar and qTip

I'm looking at using fullCalendar and using qTip to display a description using eventMouseover. Has anyone managed to do this or know of a solution? I've google'd and also tried implementing this post but i've had no joy. The only time I got it to work it got into a loop and crashed my browser. Any advice / support would be greatly ap...

jquery search custom

Hello friends, See this site http://g1.globo.com/ has a custom search field that uses jquery for any of the bottom also if placed a value in less than 2 appears a custom alert. I am hours here trying to find a solution to copy me and I can not, I am totally a layman and not getting to. If a friend i know and can get me the code I am g...

Jquery appending list content to div

I want to append the content within my 'li' to the 'trashbin' div when the link class 'ui-icon-trash' is clicked. I have a list and some li content like so: <li class="ui-widget-content ui-corner-tr"> <h5 class="ui-widget-header">item1</h5> <img src="tiem.png" alt="item1"/> ...

How to clear/reload/refresh JQuery Async Treeview?

I've implemented the JQuery Async Treeview (in APS.NET MVC2) and it works fine, but the problem is when the user adds new nodes to a tree (via another interface), there is no way to reload the tree and reflect the new tree structure. The only way to see the changes in the tree is to shut down the browser (IE8). Trying .empty() on the t...

Creating <td> elements with customer behavior on the fly in jQuery

Just getting started with jQuery, and I've had some success so far. I've created a handler that updates a <table> every time a user makes a selection from a dropdown. It looks mostly like this: function loadAttributes() { $.ajax({ type: "POST", url: "../ws/itemSearch/getAttributesForItemType", contentType: 'application/xml',...

JQTouch AJAX Link / Content wont load into jqtouch

On my index.html file, I have a link to a script: <div id="myList"> <div class="toolbar"> <h1>myList</h1> <a class="back" href="#home">Home</a> </div> <ul class="rounded"> <li class="arrow"><a href="/scripts/lookup.php?id=3294&oid=492">Affiliation</a></li> </ul> I replaced lookup.php...

Resize a Flash object via jQuery onload of page

Hi. I'm using the HTML5 JW Player. It sizes the HTML5 video correctly, but shrinks the Flash fallback player; here's an example page: Test Page If you view that page in IE, you'll notice that on panel 5, the video is smaller than the space it's supposed to occupy. On Firefox, it works fine because it's using the OGG video in its HTML5 v...

Using Jquery and Ajax to save a file in ASP.Net

I have a button that uses jquery and ajax to call a server side script to create a text file and sends back the following response Response.ContentType = "csv"; Response.AddHeader("Content-disposition", "attachment; filename=" + fName); Response.ContentType = "application/octet-stream"; Response.BinaryWrit...

ASP.NET MVC 2 Validating A Strongly Typed Model List With Data Annotations Exception When Using EnableClientValidation()

Here is the buddy class used to add data annotation validators to a Entity Framework model: [MetadataType(typeof(Result_Validation))] public partial class Result { } [Bind(Include = "Title,Description")] public class Result_Validation { [Required(ErrorMessage = "Title is required")] public string Title { get; set; } [Requ...

jQuery Detect CSS Property Change

Hi Guys, I am trying to use jQuery to establish whether a CSS property has changed inside a class. I dont want to use .HasClass() - I want to find a property within the CSS - namely display:block; I thought maybe this might work ? if (jQuery('css-class').css('display') == 'block') But not sure if it does. Does anyone have any sugg...

Why are some PHP email bodies containing the surrounding html code and other are not? And that is not PHPMailer

I have various emails being sent out via PHP mail. The problem is, for example when I receive the email, it is displayed in the body properly without any surrounding html. For some reason, other people that I am testing it out with are getting it with the html showing up. Here is an example of one of the emails being sent: $Em...

can I disable the button using like this in jquery?

$(this).closest("fieldset").find("input:not(:checkbox), select,textarea").attr('disabled', this.checked); with this I can Disable Input,select,textarea how to do with the button? thanks ...

Only fade in overlay div once all elements have loaded?

Apologies in the laziness in my query, will try to be more specific. OK- How can I modify the code below so I can guarantee that the fadeIn will only start after all the other actions have been done and all the images in the html have been loaded? Will I need to load the images via js with a callback on each? Some of the code in a $(win...

jquery class and this selector

I am trying to find the correct jquery way to select only a certain class within the currently active div: $('.imageScroll').mouseover(function() { $('.descBox').filter(this).show(500); }); markup: <li> <div class="descBox"></div> </li> <li> <div class="descBox"></div> </li> ...

jQuery warnings in Firefox Error Console

All of the sudden, I'm getting a bunch of warnings in the Firefox Error Console... this wasn't happening earlier today, and I haven't made significant changes. The error is just constantly repeating and accumulating about 3-4 times a second: Warning: reference to undefined property jQuery.ajaxSettings.traditional and that points to li...

Jquery remove. button within div to be removed

I have an list item with a button inside of it. The button is attached to a jquery function to remove the list item. //Delete Button - delete from cart $('.ui-icon-trash').click(function() { $(this).closest('li').remove() }); <li> content here.... <a href="#" title="Remove from cart" class="ui-icon ui-icon-trash">Re...

jQuery.load() with AJAX Kontactr form

After seeing many questions about how jQuery.load() handles tags in the content to be loaded, I see that jQuery strips out inline tags. But, I'd like to use Kontactr for the contact page in my site, and the much nicer AJAX embed they have is two script tags as in the code examples below. How can I work around the jQuery.load() constrai...

How can I animate a height of a div starting from a dynamic value to its dynamic height value?

I want to use the effect of slideDown() for the first div to show it, starting from the dynamically generated height of last div to a height dynamically generated by its content within? In the code bellow the part with the problem is .animate({'height':'200px'} / .animate({'height':'100px'} , the value 200px and 100px should be dynamica...

Disable button working on click

$(document).ready(function() { $("#FieldsetID").each(function() { $('.Isubmit').attr('disabled', 'disabled'); }); }); the button showing as disabled but when I click on that its doign action? is that something i am doing wrong? thanks ...

JavaScript "Toaster Popup" class works awesome in FireFox fails in IE...

SOLVED: SEE "CORRECTED SOLUTION" Area (below) --------------------------------- ORIGINAL TEXT --------------------------- I've created a JavaScript toaster popup to show info about an individual row. It works great in FireFox...but it goes down in flames in IE. ...suggestions and help appreciated. WHAT I THINK IS FAILING: I think I ...