Is it possible to use an ASP.NET web.sitemap with a jQuery Superfish menu?
If not, are there any standards based browser agnostic plugins available that work with the web.sitemap file?
hello friends,
I have a jquery grid with data with user data.. I need to handle the click on grid row for each grid row when I click I need to dispaly other grid in the bottom of the grid.
some thing like very similar to this..
http://www.trirand.com/blog/jqgrid/jqgrid.html
Go to Advanced --- master details
thanks
I'm in need to toggle divs from a dropdown select option box. I'd like it similar to asmselect for jquery but instead of listing the option tag I'd like it to display a hidden div. Is there anything like this out there? Or anyone know how to set it up? Thanks, Jeff.
How to generate page numbers like the below using javascript/jquery?
If the 5 th page is selected i have to show 3,4 and 6,7 and also 1,last page with prev,next...
Any suggestion....
Hi, I am using jquery validation plugin for client side validation.
but i want to clear error mesages on my form clear button
editUser() is called on click of Edit User button.
clear button having separated function clearUser(){
// Need to clear previous errors here
}
function editUser(){
var validator = $("#editUserForm").validate({
rules: {
userName: "required"
},
errorElement: "span" ,
messages: {
userName: errorMessages.E2
}
});
if(validator.form()){
// form submition code
}
}
Thanks
normally we use something like this to identify Id using jquery
$("#PhotoId").html('some html');
here we get the html (say div) having id 'PhotoId'
what if the id is partially dynamic i.e.
lets say there are multiple photoes
each id would start with 'PhotoId'
EX.
$("#PhotoId" + result.Id).html(some html');
NOW,
i want to identify html(div) which starts with 'PhotoId'
how can it be done
Hello,
I currently am displaying dates as follows "yyyy/mm/dd" in a wordpress blog (it needs to be input in this format because a plugin is using it to define a post expiration date). I want to use jQuery to locate all of these strings on a page (they're all in table cells) and reformat them to "mm.dd.yy"
The site is:
http://www.beattrainsoundsystem.com/category/gigs
The dates also exist in the footer on every page which I would also like to change.
Thanks!
Hi is there a way to get the coordinates of a selection in an image using jQuery?
I need the coordinates to be used with an image map. Also is it possible to hava a circle shaped selector? Thanks in advance!
I'm using a jQuery plugin called InfiniteScroll (https://github.com/paulirish/infinite-scroll) and I have a URL with this pattern: '/category/2/', when I paged the result I use the following pattern: "/category/2?page=2".
When Infinite Scroll makes de request, he increments the wrong number, in the case above, the request is: "/category/3?page=2" in place of "/category/2?page=3".
Anyone knows how workaround this?
I need a way to turn my 2 character string dates (i.e. '04/10/2010' & '05/24/2010') into an integers in jquery to see if one is greater than the other. If the user enters an end date that is less than the begin date I need to popup an "invalid date range" error.
i have a list of thumbnails!
i am able to rotate a image with jquery, but after i refresh the page, the image is the same!
i want to make a SAVE button to save all the edited images?
how i can save the edited image on the server side?
thanks
Is there a jQuery plug-in to remap the "dot" key in the numeric keypad? The purpose is to make it print a decimal separator, rather than a dot, in languages that use commas or other characters. I'd like to mimic the behaviour of some desktop applications like MS Excel.
(It's okay to hard-code the output character.)
I'm trying to add one to a number inside a p element with jQuery, but it doesn't work.
$(document).ready(function() {
function addOne() {
var number = $('p').html();
return number++;
}
$('p').text(addOne());
});
Hi All,
I am using jquery cycle and jCarouselLite plugin to display images as slide. Images are getting displayed in ie7. but working perfect in ie6.
Code:
$('#slide').cycle({
fx: 'fade',
continuous: true,
speed: 7500,
timeout: 55000,
sync: 1
});
Geetha.
Hello,
Is this the notation to use for Not Equal To in JS, in jquery code
!== OR !=
None of them work
Here is the code I am using
var val = $('#xxx').val();
if (val!='') {
alert("jello");
}
Thanks
Jean
I just want to use javescript /jquery to determine if and xml file exsists
I don't need to process it I just need to know that its available or not.
can seem to find simple check.
thanks
Has anyone successfully used the jQuery Validation plugin with JQGrid? I realize that JQGrid has its own validation scheme, but it's limited and a little clumsy; and I'd prefer to reuse the validation UI, language, and rules that I'm using with the rest of my forms.
So I have a script which returns a price for a product. However the price may or may not include trailing zeros so sometimes I might have:
258.22
and other times I might have
258.2
In the later case I need to add the trailing zero with jQuery. How would I go about doing this?
I am using jquery corners javascript library to make the corners of a div rounded. It works fine, But if i specify a body background image/color or grident background color, corners are still white. How can i make these corners transparent?
Hi there!
Does anybody know how to deal with the effect at http://2crossmedia.com/liv-multicolor/
If you click into the text field, its surrounded by a color-changing line.
The code says it's jquery. But how :) ?
A lot of thanks!
I can't parse the JSON that I have no control of. What am I doing wrong here?
data.json
{
"img": "img1.jpg",
"img": "img2.jpg",
"size": [52, 97]
}
{
"img": "img3.jpg",
"img": "img4.jpg",
"size": [52, 97]
}
jquery
$.getJSON("data.json",
function(data){
$.each(data, function(i,item){
alert(item.img[i]);
});
});
Belong to this article Jquery Partial View
What should i do when i want to submit the value fill from user
and sent it to the ActionResult controller that return the partial view
-- View Code that call the controller (from article)
<script language="JavaScript" type="text/javascript">
$('#centerbody').load('/Custom/CustomAction', function(html) {
$('#centerbody')[0].value = html;
});
</script>
-- Controller Action with no parameter (from article)
public ActionResult CustomAction()
{
return View("_CustomParialView");
}
Thanks for your suggestion