Does anyone know of a well-supported ASP.NET wrapper for jquery (much like the way Coolite works for ExtJS)? I have a lot of ASP.NET web forms experience and really don't like writing javascript. I've found working with raw jquery in the web forms model to be difficult (especially when dealing with animations and handling postbacks).
If...
I am trying to break the following sentence in words and wrap them in span.
<p class="german_p big">Das ist ein schönes Armband</p>
I followed this:
http://stackoverflow.com/questions/2444430/how-to-get-a-word-under-cursor-using-javascript
$('p').each(function() {
var $this = $(this);
$this.html($this.text().r...
I have multiple select boxes on the page all of which share the same beginning parts of the name attribute. What I need to do is go through each select box on the page with this starting name SELECT___ and grab the name of that select box and whatever the selected option value is and have it formatted like this so that I can then insert ...
Hey folks,
an application uses the jQuery range slider. now i want to select the date items between min and max. how can i select them. for example i wanna change the color of this links.
There`s an screenshot of my slider http://picfront.de/d/7UoZ
Thanks,
Peter
...
I am attempting to implement the suckerfish menu found on this tutorial. I get "object expected" error from the sample javascript:
$(document).ready(function () {
$("#nav-one li").hover(
function () { $("ul", this).fadeIn("fast"); },
function () { }
);
if (document.all) {
...
I certainly hope I could get help with my problem.
I have the page uploaded at http://www.strategyinstitute.com/test
It is a simple photo gallery navigation.
Problem 1:
The entire script runs perfectly (except for problem 2) on Firefox. But on Safari, .animate() is not executing as it should. It is suppose to to do margin-left : -=630...
Hi, this is a mockup i want to buid...
I"ve having trouble properly laying out with just css/js ... is there a jquery plugin/tool that could help with this?
Could this be called a reverse orientation calendar?
Writing it from scratch has been hell so far, and i'm not remotely close.
...
I am trying to convert a jqtouch app that was developed for me to jquery mobile.
I don't know how I should be converting this code
showMainMenu: function() {
Inventory.loadDealers();
Inventory.enableMenu(false);
jQT.goTo('#mainmenu');
},
I tried
showMainMenu: function() {
Inventory.loadDealers();
...
Given the following HTML file:
<!DOCTYPE html5>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#form').submit(function(e) {
// put your breakpoint here to look at e
alert('Whic...
I'm trying to access JSON data with jQuery and grab a specific set of values based on a variable. I've done this before using [] but for some reason I can't figure out what is going wrong this time.
My JSON file (being read in by getJSON, and named jsonmaker.php) looks like this:
{"0107001":{"label":"Canada","x":"0","y":"0.34"},"01070...
I'm looking for a way of increasing the performance of my code. Currently I do something similar to this:
$(".div1").load("Page.aspx #section1");
$(".div2").load("Page.aspx #section2");
However, this means I'm having to make 2 GET requests. Is there any way of reducing this to 1 request by doing something like this:
var content = $.l...
I'd like to select elements with attribute names (keys) that begin with a set string. Use case: the jQuery UI dialog creates buttons whose only unique identifers are a pseudo-random custom attribute with a sequential value such as jQuery1288273859637="40"
I'd like to select based on the fact that the attribute's name is jQuery* (begins ...
I'm passing options to the qTip plugin like so:
hide: {
when: {
event: 'unfocus',
event: 'inactive',
event: 'click'
},
},
It appears to be working but should I bundle those 'events' somehow?
...
Hi there,
I am using Anythingslider in one of my projects, and I want to display more than one image in the panel, the same way jCarousel does. I googled around and found nothing that can help. I appreciate any help ( code snippet or idea ). thanks
http://css-tricks.com/anythingslider-jquery-plugin/ AnythingSlider
...
I have a "Learn More" button that when the user hovers over, will display a "more info box" over top of the button that contains a block of text. I am having trouble getting this to work correctly as the more info box seems to be interfering with the hover function. I uploaded an example of what I'm trying to achieve: http://recoverstudi...
Hi,
I need to choose a jQuery data grid plugin that plays well with MVC2.
I sit firmly on the client side so know nothing of MVC2 so was wondering if any had any particularly good or bad experiences in MVC2 with either of the following:
Datatables
Flexigrid
jqGrid
The following functions are required:
Free to use commercially
Col...
I have an array of classes and IDs and am trying to iterate through and append to those elements. The code below works in all browsers apart from IE7 and below. IE7 and below throw an exception telling me that 'length' is null or undefined. Been wrestling with it for a while now. Any ideas?
Code is here: http://gist.github.com/651456
...
I'm using a plugin for jQuery. It works great in webkit, but when I try it in firefox I get the following firefox error:
google.maps.Geocoder is not a constructor
$('.to, .from').geo_autocomplete(new google.maps.Geocoder, {
Here is all the jquery:
$('.to, .from').geo_autocomplete(new google.maps.Geocoder, {
mapkey: 'ABQIAAAAbnvDoAoY...
Anyone have any idea why my lazy load does not seem to be working?
I copied exactly from the lazy load page even using their images as a test, they just load in normal rather than fade...?
lazy link example
I then put a no conflict script in as i have drop down as well, nothing there either which fixed it...
Just loosely fades in fir...
How does one go about setting the weekend to a different color display when viewing the monthly or weekly view.
...