jquery

Hide start time in FullCalendar

On FullCalendar, in the month view, is there a way to hide an event's start time? ...

How do I create a popup to submit form data?

I did see this post which lead me to the UI/API/1.8/Dialog I'm looking for the most basic popup to submit form data. Is this it? (does a popup submitting form data have to use ajax?) Thank You. EDIT - Sorry, to clarify, I mean that the popup contains the actual input fields and the Submit button as well. I did see the jQuery example...

jquery plugin - autocomplete

please help me to choose the best plug-in in my particular scenario, I am building a page where user will enter his/her first or last name initial and it will populate the name and I have around 25k records in my db. what do you guys recommend? ...

Print content of a javascript tabcontrol: Gridviews

I've got a JQuery tabcontrol (4 tabs), which each of them control 1 gridview. now I got a button "print". It activates a javascriptfunction, which should build a page, containing all gridviews. I got something, but it does not work: function doPrintPage() { myWindow = window.open('', '', 'titlebar=yes,menubar=yes,status=yes,scr...

AJAX form sections - how to pass url of next stage of form

Hi, I've got a multi-part form (in a PHP MVC setup) which I have working correctly without javascript enhancement. I'm starting to add the AJAX form handling code which will handle each stage of a form submission, validating/saving data etc, before using AJAX to load the next stage of the form. I'm wondering how best to pass the URL of t...

How can I separate words in td with an html tag?

How can I use jQuery to separate multiple words in a td with an HTML tag such as <br/>? For example, <td>hello bye</td> would become <td>hello <br/> bye</td>. ...

jQuery selector loads images from server

Hi! here is the code: <script type="text/javascript"> var ajax_data = '<ul id="b-cmu-rgt-list-videos"><li><a href="{video.url}" '+ 'title="{video.title.strip}"><img src="{video.image}" '+ 'alt="{video.title.strip}" /><span>{video.title}</span></a></li></ul>'; var my_img = $(ajax_data).find('img'); </scr...

Google Forms w/ jQuery Validate Not Submitting to Form in IE 7

In IE7, when a user fills out this Google Form w/ jq validate.js, and clicks the Submit button, the page navigates to the "success" page, but our form isn't showing the submitted content. http://www.xtracycle.com/lifetime-freeradical-warranty-and-guarantee/ I read that IE 7 has issues with input elements having both a type and class/id...

Which methods return jQuery objects?

$(this).hasClass('something') returns a boolean value. Q: Is there a list of which methods return non jQuery objects? ...

How to get the Jquery row ID on single click

var value; $("#Grid1").click(function(e) { var row = jQuery(e.target).parent(); value= row.attr("id"); }); var onrowclick = function() { ("#Grid1").click($("#showgrid").load('/Names/Friends/satish/' + value)); }; i am trying to send the value on URL.. when I am giving like this ...

using the window object for accessing global user defined objects and using text within html for creating additional specificity

I don't do very much jquery / javascript but wanted to ask for some advice on the following piece. I have tried to cut out as much as possible. Most of this was semi-inherited code with catching a bunch of events just hardcoded in. I'd like to generalized them more by putting the object name in the html and accessing via jquery on proces...

Looking for a jQuery plugin : sort of bar rating

Hello, i own a website where users can vote/rate things and i want to improve the poor inputbox (from 1 to 10) to improve visual rendering. I was thinking of a bar, which have 10 ' | ' you can move the cursor from one to ten (it doesn't have to be AJAX because the rating is only added at the end of the form) I'm sure you already seen...

Accessing Iframe content using jquery on IE

I am trying to upload a file using an hidden Iframe and get the response back. The following code works fine on Firefox but breaks on IE. It fails on getting the response back. Line.... var content = $j(this).contents().find("body:last").text(); Any help/suggestion is deeply appreciated. Thanks. $j('#uploadForm').submit(function(e) ...

How to customize /#/ in Jquery address plugin

Hi, I'm using the Jquery plugin Address to achieve deep linking. The generated urls come out in the format www.example.com/#/tab/image, but what I need is www.example.com/#tab/image. The plugin seems to automatically generate the /#/ part. I wonder does anyone know how to do this? Or even if it's possible? I would greatly appreciate...

JQuery Date() Function Not Working

Anyone know why this doesn't work? var lastReceivedBeginDate = new Date($("input[name='lastReceivedFromYear']").val(),$("input[name='lastReceivedFromMonth']").val(),$("input[name='lastReceivedFromDay']").val(),$("input[name='lastReceivedFromHour']").val(),$("input[name='lastReceivedFromMinute']").val(),$("input[name='lastReceivedFromSe...

Jquery tabs and forms

Hi, this may be a weird problem but I’m not sure the best way to go about it.. I am using JQuery ajax tabs. The tab section is dynamic so multiple tabs can be added, as the content is loaded via Ajax the same content can be loaded into different tabs. The other important detail is that i am using the Cache option so the tabs maintain s...

Toggle block in jQuery

I'd like to click a header link and have the block directly underneath hide or show (with slideToggle) Thanks <div class='header'><a href='#'>Header</a></div> <div class='block'> <div class='test>Some Text</div> <div class='test>Some Text</div> <div class='test>Some Text</div> </div> <div class='header'><a href='#'>Header</a></div> ...

masked input: I can't get the simplest completion to work

Trying to use Josh Bush's masked input plugin. I want to shift focus and do other things once the person puts their cell phone in. I mask to a phone shape. When I hit the last letter, I want it to trigger a javascript function. Right now that function just alerts hi. I even copied the demo right off Josh Bush's page: http://digitalbus...

jQuery fadeIn() not working in IE

$(document).ready(function() { //Default Action $(".tab_content").hide(); //Hide all content $("ul.tabs li:first").addClass("active").show(); //Activate first tab $(".tab_content:first").show(); //Show first tab content //On Click Event $("ul.tabs li").click(function() { $("ul.tabs li").removeClass("active"); //Remove any "acti...

How do I control the direction of the scroll on my coda slider?

Hello, I have a coda slider and am unable to determine the direction of the scroll. I have 3 panels that I want to scroll left to right. Sometimes it scrolls left to right, sometimes up and down, and sometimes horizontally. How do I lock it down to go the direction I want? Here is the HTML: <body> <div id="slider_home" class="round_...