JQuery Thickbox Form Return Value To Parent
I am using JQuery's thickbox to input form data. Would like to auto close the thickbox and send a variable back to the parent from the thickbox form input upon submit. ...
I am using JQuery's thickbox to input form data. Would like to auto close the thickbox and send a variable back to the parent from the thickbox form input upon submit. ...
oi! another question. The form is at: http://fuzzysiberians.com/app4.cfm?a=1 I am using: $('#sec_ssn3').rules("add", { groups: { ssn:"sec_ssn1 sec_ssn2 sec_ssn3" }, required:true, number: true, messages: { required: " <span style='color:red;'>Please enter co-applicant's social security number</span>...
I have a table, and when the user clicks on each cell, some details should appear in a small popup div that appears where the user clicked. I'm using JQuery, but not to bind the function to the onclick event. function detailPopup(cell, event, groupName, groupID, ...) { var newDiv = document.createElement("div"); newDiv.id = "detai...
I have a table that has structure like this (td omitted) <table> <tr class="header">...</tr> <tr class="row">...</tr> <tr class="row">...</tr> <tr class=="header">...</tr> <tr class="row">...</tr> <tr class="row">...</tr> </table> When user click on the row I need to hide all rows up to the next row that has class "header". What woul...
I used $(document).html(), but that threw an error... is there a way to get everything? ...
Hi, Got a weird bug with FireFox only. I'm using Uploadify - a great jQuery upload utility to allow multiple uploads to my site. I have a Modal Popup which appears in the middle of the window with blackened out background. My Flash upload button is inside this popup. In all other browsers this works fine, but in FireFox, sometimes (n...
On this Page http://www.eamobile.com/Web/mobile-games In IE6 while we click on the Tab "Top iPhone Games , Top Mobile Games , Staff pics" the class is not changed in the IE6 and while click inside the tab content area its changed. while in FF and IE7 its works fine. please let us know if you have some solution for this. ...
I have a table rendered from custom control over which I have no control yet I need to make this table scrollable so that the header, or actually the first row is fixed. Is there a jQuery plugin that would allow me to do this? ...
I have a javascript object array: array = [ {x1, y1}, {x2, y2}, ... {xn, yn} ] I want to create a new array of just the x values: [ x1, x2, ... xn ] I could do this easily in a for loop...: var newarray = []; for (var i = 0; i < array.length; i++){ newarray.push(array[i].x); } ...but I'm wondering if there's a nice one line...
I'm new to jquery and to some extent javascript programming. I've successfully started to use jquery for my ajax calls however I'm stumped and I'm sure this is a newbie question but here goes. I'm trying to return in an ajax call a complete html structure, to the point a table structure. However what keeps happening is that jquery eit...
I am using jQuery to insert an HTML shell into a page, and populate the shell with XML. Here is the XML in question <minorPropCategory title="Test Title 1"> <minorProp>FLV</minorProp> <minorProp>BLV</minorProp> <minorProp>RLV</minorProp> </minorPropCategory> <minorPropCategory title="Test Title 2"> <minorProp>LAS<...
I'm trying to write jquery-plugin for table. I have 2 dynamic tables from server: <div id="first_column"> <table> <tr id="f1"> <td class="select">some text</td> <td class="name">some name</td> </tr> <tr id="f2"> .... more same rows .... </tr> </table> </div> <div ...
<tr> <td><input name="of[1][dsn]" type="text" size="6" /></td> <td><input name="of[1][gc]" type="text" size="6" /></td> <td><input name="of[1][ys]" type="text" size="3" /></td> <td><input name="of[1][ym]" type="text" size="3" /></td> <td><input name="of[1][yl]" type="text" size="3" /></td> <td><input name="of[1][s]" type="text" size="3" ...
I have a Repeater control that I bind server-side. It repeats a series of divs, and does so with no problem. I have some buttons that I use to sort the repeater (newest, highest ranked, random) and this works the way it should. I would like to improve my user experience by making the buttons sort the divs using ajax/jquery somehow so t...
How do I fire another event after I have completed the selection on the textbox that has autocomplete. I want to show a valid div area based on the selected value. ...
I have the following situation in JavaScript: <a onclick="handleClick(this, {onSuccess : 'function() { alert(\'test\') }'});">Click</a> The handleClick function receives the second argument as a object with a onSuccess property containing the function definition... How do I call the onSuccess function (which is stored as string) -and...
Hello peoples, I am using JRails with Ruby on Rails so that I can simply use jQuery since I am more familiar with it. I am also attempting to use Low Pro to submit some of my forms remotely. I am currently running into an interesting problem that has me stumped. I have added the following to my application.js file and I know that these...
I am in the process of creating my first jQuery plug-in that will format numbers automatically to various international formats. There are a couple functions within the plug-in that strips the strings and re-formats the string that needs to be called from another jQuery script. Based on the plug-in structure below (let me know if you ne...
Hi all, I need some help finding a jQuery plugin which will allow me to display an image preview from a select list of images - onfocus/onchange.. Example: <select name="image" id="image" class="inputbox" size="1"> <option value=""> - Select Image - </option> <option value="image1.jpg">image1.jpg</option> <option value="image2...
This syntax for some reason isn't working and I'm wondering why. When I alert the values in the page, I can see everything but the textarea value. I'm not even getting an undefined. var report = $("textarea#report").val(); Here is my html: <textarea id="report" name="report" rows="25" cols="10" style="width:100%;height:200px;"><?p...