jquery

jQuery and Grails/HTML - Make text field complete text like Google does

Hello: I wanna make certain fields in my page to show me like a list of possible finishing sentences just like Google does. I think this is done via jQuery, but I'm not sure. The textfield is named commodity. Let's say I write General and in the list, array, or DB I have General Commodity I should show me General Commodity under the ...

How can i pass values to a javascipt array?

I am trying to implement the autocomplete method for textboxes. I would like to use the example based on jquerys autocomplete provided here <head> <link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/j...

Remove search option filters jqGrid

I'm trying to set few filters to search with this: $.jgrid = { search : { caption: "Search...", Find: "Find", Reset: "Reset", odata : ['equal', 'not equal'], groupOps: [ { op: "AND", text: "all" }, { op: "OR", text: "any" } ], matchText: " match", rulesText: " rules" }}; But I cannot get it to work. It is still listin...

Implementing comet on the client side

I'm trying to implement comet in my application and, being inexperienced with JavaScript, I'm not sure how to do the client side. When the server receives a request, it just keeps it open and writes data to it when necessary: def render_GET(self, request): print "connected" request.write("Initiated\r\n") reactor.callLater(r...

JQuery + updatepanel + DropDownExtender + checkboxlist = strange behavior

Hi, I've got some strange problems and I don't know what to do about them. First I have an UpdatePanel which has a GridView inside. In one of the column definition there is a DropDownExtender and a Panel wrapping a CheckBoxList: <asp:UpdatePanel ID="updGrid" runat="server"> <ContentTemplate> <asp:GridView ID="GridView...

Can jQuery copy an element's bounds (position, size, margins, etc.) to another element?

I have an element of an arbitrary type. I'd like to create another element, of either the same or a different type that has the same position and size as the first. The element may or may not be positioned. For example, I might start with a <select> with a certain size, possibly dependent on its contents, i.e. width/height auto. I wa...

jquery: stop function immediately

when mouseover .down, the div layer slides down when mouseover .up, the div layer slides up If the mouse goes over .b, how do I get the div to slide down without having to wait for the div layer to slide up first? basically kill the previous function immediately <a href="#" class="down">Slide Down</a> <a href="#" class="up">Slide Up<...

Mock/Fake ASP.NET Service References and QUnit testing

I'm just getting into QUnit testing, and have run into a problem on my first page :S We use ASP.NET Service References to take advantage of async data loading on html pages, creating a reference to a web service in the same project. What ASP.NET does behind the scenes (ScriptManager control) is create a JS file representing the service...

I'm attempting to change data depending on the href of the link, but it only executes once

$("a").each(function() { openFile($(this).attr('href')); } I got this from another question. openFile is a function that switches the img src depending on the file extension of the link. now if i have this: <a class="thelink" href="../General Reading/General Reading 1/Luddites/Luddites 4 Summary.pdf"><img class="theimage" src="" al...

jQuery Not to show Year on the Datepicker?

How can i possible not to show the year entry on jquery Ui datepicker. now its show as Oct 2010, but i just need Oct. is it possible?? ...

Fancy Box Overlay not working in IE8

Hi All, I am having an issue with FancyBox and IE8. For some reason IE8 does not recognize the background transparency on fancybox's overlay. It works in IE7 and older and Chrome, Safari, and Firefox. You can see the problem at: http://seabagsc.nexcess.net/tote-bags/kevlar-tote.html Any help would be much appreciated. Thanks! Chuck ...

How do I build a "stoplight" state indicator button using jQuery?

As my first jQuery project, I'm trying to write a "stoplight" status indicator that cycles through "off", "green", "yellow", and "red" circle images and POSTs the information so I can record it in a DB. I'm currently trying to use the toggle() function, and it works except that I have no way to "initialize" the value to the preexisting ...

jquery if/else block problem

I'm having a problem with an if/else block. The problem is that the else block is always executing. When the click happens, if two select elements have both have a class of "current-drop" then only the if block should execute. However, since those two classes are being removed at the end of the if block (the classes are added again l...

Animated scroll to an anchor after an external link is clicked, is this possible?

I'm not sure if this is possible, but I want to be able to click an external link with an anchor #anchor and have it animate scroll to that anchor tag after loading the page. Any help on this would be much appreciated. <a href="http://foo.com/work/#foo&gt;Anchor Tag</a> This would take you to foo.com/work and then animate you down to ...

Jquery: Get next element from an element

How can I get the target from the with td rowspan=4 Not sure about: $("#fromTd").parent("tr").next().eq($("#fromTd").attr("rowspan")-1) <table> <tr>...</tr> <tr>...</tr> <tr><td id="fromTd" rowspan="4"></td></tr> <tr>...</tr> <tr>...</tr> <tr>...</tr> <tr>...</tr> -> target (can be aleatory position..) </table>...

jQuery AutoComplete - Return multiple values

I'm using jQuery AutoComplete, and I have an auto-complete search box to search for users. Default.aspx <script type="text/javascript" language="javascript"> $(document).ready(function() { $("#<%= txtUser.ClientID %>").autocomplete('UsersAutoComplete.ashx'); }); </script> <asp:TextBox ID="txtUser" runat="server" /> ...

jquery problem?

i have this jquery problems i have had for days, im so new to this, so excuse my dumbness in this subject. thanks :)) html code: <ul class="statuses"> <li id="set_23" class="message"> // this is meant to increase everytime you click the vote_up just like stackoverflow <span class="vote_count">27</span> <a href="#" class="vote_up...

String based axis for jQuery Flot graphs?

How do I get non-numeric values on a Flot graph axis? For example, on the Y-axis I would like to have (excuse the crappy graph): /* A| B| _/*----------* C| _/ \ D| _/ \ E| _/ \ F| / \ G| * ...

Jquery Form Validation - using if statement for validation?

Hey Folks, I have a form that I am using jquery/mail chimp. A portion of the form is hidden and shows (using Jquery Slide()) if a radio button is checked. Every thing works great as it should. The Problem: The form sets to validate the sections that are hidden as well. However some users will not always check the radio button mean...

MVC routes / url, jQuery and Virtual Dirs

Im with my first web app and this is my first deploy. All is working on local, but is not in remote. I used the web deploy option of VS2010. First: <link href="../../Content/Site.css" rel="stylesheet" type="text/css" /> <script src="../../Scripts/jquery-1.4.1.min.js" type="text/javascript"></script> The app knows that Site.css can ...