Hey,
I am using jQuery to open a dialog window with a textarea transformed into an instance of CKEditor. I'm using the jQuery adapter provided by the CKEditor team but when the dialog window opens up I cannot interact with the editor (it's created but "null" is written in the content space and I can't click on anything or modify the con...
I have a set of radio buttons that are dynamically generated (via JSON call):
StringBuilder sbEligAll = new StringBuilder();
sbEligAll.Append("<div id='currentselectiondepartment'>");
sbEligAll.Append(" <input type='radio' name='selectalldepartment' id='radCurrent' value='0' /><label for='radCurrent'>Current</label>");
sbEligAll.Appen...
I am unable to get the correct title for this, please change the title if you get appropriate one :)
This is what i am having
<div class="container">
<div class="innerContainer">
<div>
Div content Here [ always either embed or object or image ]
</div>
xtra noise
</div>
<div class="innerContainer">
...
To give more information I am using the modular form here:
http://jqueryui.com/demos/dialog/#modal-form
`b(e.target).zIndex` is not a function
[Break on this error] `(function(a){a.widget("ui.mouse",{opti...is._unrotate}return this}})})(jQuery);`
/js/jquery-ui.min.js
I also seem to be getting the error "Too much recursion"
too m...
I have the following jQuery function:
$(function(){
if ($(".menu li").hasClass("active")) {
$(".active").css("margin-top", "6px");
}
});
This is applied to a CSS/jQuery menu, which expands and contracts when each menu item is hovered over. The onClick event adds a margin-top of 6px...
Please have a look at this demo page that I cooked up a while ago:
http://www.s3maphor3.org/demo/hotbox/
This is a custom lightbox that is triggered upon holding the space key. The way it works is quite simple. There are two hidden divs on the page, one for the content of the lightbox and one that holds the darken layer (opacity 70%). ...
I'm trying to find out if anyone knows about an already existing jQuery plugin that will count up to a target number at a specified speed.
For example, take a look at Google's number of MB of free storage on the Gmail homepage, under the heading that reads "Lots of space". It has a starting number in a <span> tag, and slowly counts upwa...
I have a multi-step form where the form on Step3 submits to Step4.php. Step4 is a results page, and it takes some time to load, so I wanted to try and implement a progress bar or a loading bar or something when the user clicks the step3 submit button before Step4.php actually loads. I would think I could do this with jquery? But, I'm ...
Hi Gang,
I'm using this jQuery urlencode and urldecode plugin - very simple and easy to use but it doesn't, in its original form, remove + from the string. The one comment on the home page suggests a patch but I don't know how to implement it. Can anyone help me out?
The Page: http://www.digitalbart.com/jquery-and-urlencode/
//URL E...
I am trying to make two ajax requests in parallel using jQuery like this:
var sources = ["source1", "source2"];
$(sources).each(function() {
var source = this;
$.ajax({
async: true,
type: "POST",
data: {post: "data", in: "here"},
url: "/my/url/" + source,
success: function(dat...
I have a View that renders something like this:
"Item 1" and "Item 2" are <tr> elements from a table.
After the user change "Value 1" or "Value 2" I would like to call a Controller and put the result (some HTML snippet) in the div marked as "Result of...".
I have some vague notions of JQuery. I know how to bind to the onchange event...
I'm a newb to jQ so please forgive my ignorance.
I'm using Asa Wilson's plugin jquery.dirtyform.js to prompt a user of unsaved changes before they nav away from a page (ASP.Net C# 3.5).
It basically loops through all controls and appends a class and handler to each input.
Controls w/i an ajaxToolkit:TabPanel are ignored, unfortunately....
If I have a list of objects
IEnumerable<MyType> myTypes;
Is it possible for me to return this to the client as JSON
return Json(myTypes);
and if so, is it possible for me to convert this (now JSON format) list to a <table> when it gets to the client?
Is there any jQuery plugin to do this?
The thing is, there's loads of other stuf...
Hi, I have a jcycle plugin on a number of divs which are testimonials. Basically I don't want to show the tag in the testimonial viewed in a block on the front page but rather I do want it to show on another page. So I want to add some jquery or another method that strips the img tags for the front page display.
Any ideas how to do th...
Hey guys, I am trying to create a grid like system with div's with content floated left. The problem is that the height of each div is not static since the content is different in each one. Since the height is different.. things get outta whack if one is taller then another in one row.
Is there some sort of css way or js (prefer java...
Hello,
My html is like this
<ul>
<li>...</li>
<li>
<ul>
<li>...</li>
</ul>
</li>
</ul>
This is just a example, a ul can contain many li but the max depth is ul li ul like in example
I am using JqueryUI Sortable to sort this li I want to get the sort order of the li to store it in database so that use...
Hi,
I have a list showing up when i click on button, the problem is that i want to hide the list whenever it loses focus i.e. user clicks anywhere on a page, but not on that list. How can i do this? Also, you can see how it should look at last.fm, where's list of profile settings (li.profileItem).
(ul.del li ul by default is display:none...
I'm using JQuery to make a JSON request back to the server and it seems that it's parameter serialization is hard-coded to what PHP expects instead of being generic in nature. Basically I have an object that looks like this:
{
foo: 1,
bar : [1, 3, 5]
}
And it serializes it to:
foo=1&bar[]=1&bar[]=3&bar[]=5
Is there anyway t...
I am trying to fill a table with JSON data. When I run the following script I get only the last entry of 10. I must have to do some sort of .append() or something. I've tried to put this in but it just returns nothing.
$(function() {
$('#ReportedIssue').change(function() {
$.getJSON('/CurReport/GetUpdatedTableResults', function...
This is how I load jQuery:
<script src="http://www.google.com/jsapi"></script>
<script type="text/javascript">
function OnLoad() {
insert jQuery goodness here
};
google.load("jquery", "1");
google.setOnLoadCallback(OnLoad);
</script>
But instead of function OnLoad() {, I'd like to use
$(document).ready(function() {}
so...