I am wondering if there is an easy way to keep this popup window (span) JPicker (built on JQuery) on top of other modal windows or divs? Zindex, is there a way to make sure the zindex is always on top?
Thanks
I would like to add tabs for my website and I understand I can use the tab control in the AJAX toolkit or I can choose to go with JQueryUI tabs. Each tab would need to load a separate asp.net page and I need to customize the tabs to look slick.
Any thoughts on what approach I can use?
Hello. I have an image on my website. I would like when I click it, it show a , and when I click it another time, it hides the .
How can I do this in JavaScript? Should I use jQuery?
Hi,
i need to get a reference to the FORM parent of an INPUT when I only have a reference to that INPUT. Is this possible with javascript (or else jQuery) ?
function doSomething(element) {
//element is input object
//how to get reference to form?
}
This doesn't work:
var form = $(element).parents('form:first');
alert($(form).attr("name"));
I've got a simple list which is generated by a checkbox list. The generated code is simply this
white,blue,red,black
I need to use jquery to wrap each of these elements in a < li tag. How do you go through the list and use the comma as a separator? I also will need to delete the comma. Sometime there will be 1 item, sometimes 3, etc.
Thanks in advance!
Im getting SyntaxError: Parse Error, only on safari. Here is the code in question.
<script type="text/javascript">
//
I am using transloadit a jquery plugin. which works on every other page and is loading fine on safari by the looks of it.
The errors is on line 44 which is
export: {
Can anyone see anything wrong with that page?
Hi!
How I can capture browser restore/maximize event in jQuery or javascript? We can use window.onresize but that only tells that the browser is resized NOT. thanks!
Hi I am using jQm Window to load modal window.
http://dev.iceburg.net/jquery/jqModal/#how
i am trying to
jqmShow
Show jqModal element(s).
$('#dialog').jqmShow();
$('.dialogs').jqmShow();
but it throws some JS error,
but it does not load on the page load, please guide me for the same.
TIA
I'm using a context-menu jquery plugin and I need to detect what browsers support this. How can this be done?
I heard some versions of opera and safari don't support this right-click overriding business
Just moved from WebForms to MVC and replacing various userinterfaces. Not sure how the WebForms CheckListBox is implemented, is there a jQuery plugin or a basic example of this somewhere?
Hi,
I dynamically load a css stylesheet (with a little help from jQuery) like this:
var head = document.getElementsByTagName('head')[0];
$(document.createElement('link'))
.attr({ type: 'text/css', href: '../../mz/mz.css', rel: 'stylesheet' })
.appendTo(head);
This works fine in Firefox and Google Chrome, but not in IE.
Any help?
Thanks
hi!
I'm working on a project which includes generating pie and bar graph charts on the fly with user inputs.
Can anyone suggest me some good libraries to do that?
It can be any like jquery, css, php class or anything..
Thanks :)
Via SWFobject and AJAX I put in a video to a certain .
Using jquery I tried this:
$('#youtubepreview').html('');
HOwever that didn't remove it at all - the video still stayed right there.
Any ideas?
I have a list of items that have some jQueryUI buttons associated with them. After an action (deleting an item) I want to reload the list via ajax.
Only problem is when I do so the JQueryUI buttons no longer show, just the standard markup.
I know I can use jQuery.live() for dynamically adding click handlers etc, but how do I apply a jQueryUI button() to them?
Hi everbody,
I need to make a web system using asp.net mvc, jquery and web standards
for a customer with a style like Windows Vista/Seven.
Can anybody indicate me a link to do this with CSS ? I search on the web but i didn't find it =/
I'd like to have interface elements like "window", "menu", "buttons", "form controls", etc...
If anyone could help me, I appreciate.
thanks!
[]'s
I know inline Javascript is frowned upon and with the new on-the-fly Javascript compressors that check for idle/unused function usage and omit the unused code, it seems good practice to have all your Javascript in an external file.
My question is, in situations like FOUC (flash of unstyled content) which usually require little snippets of code right before the closing </body> tag, is there a JQuery resolution that would serve the same purpose, but from a remote Javascript file linked in the <head> of the document?
we are developing a web application which allows a user to draw diagrams(flow/ER diagrams) and we need the representation of that diagram in some XML or other formats. How should we acheive this ?? is there any open source software or jQuery plugin or anyother server side software??
am doing simple messaging system,
For compose the message ,
i have given the textarea ,i want autosuggest in the textarea also i need somthing like reove icon,
can u tell me how to this sort of function , i thing some the jquery plugin do these.. can u tell that name ,
For clear view of my expecation plase see the image...
Thanks
I'm currently looking into the JQuery library for CSS Layout Template module
Is it possible to define the height of a placeholder with *?
Meaning it will push content down if it has to, or fill up any remaining space if the complete content is less then the view port.
This would be really nice to make the whole sticky footer thing much easier and robust.
I am using jQuery validation plugin for form validation. The problem I am facing is when I have inline labels..
For Example:
<input type="text" name="myinput" value="Enter your ....">
This is the sample case where validation is failing because the 'value' is set for input field. Is there any workaround? How do I ignore default/label values?
Looking in the jQuery core I found the folloiwng code convention:
nth: function(elem, i, match){
return match[3] - 0 === i;
},
And I was really curious about the snippet match[3] - 0
Hunting around for '-0' on google isn't too productive, and a search for 'minus zero' brings back a reference to a Bob Dylan song.
So, can anyone tell me. Is this some sort of performance trick, or is there a reason for doing this rather than a parseInt or parseFloat?
Thanks
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 this?
Thanks
Andy