Hi
I am working on migrating the ASP.NET apllication to MVC Framework.
I have implemented session timeout for InActiveUser using JQuery idleTimeout plugin.
I have set idletime for 30 min as below in my Master Page. So that After the user session is timedout of 30 Min, an Auto Logout dialog shows for couple of seconds and says that "You...
I have a function that attaches the jQuery UI DatePicker (with my options) to a passed jQuery object:
function bindDatepicker($obj)
{
if ($obj == null) $obj = $("input.date");
$obj.datepicker(
{
appendText: '(yyyy-mm-dd)',
autoSize: true,
changeMonth: true,
changeYear: true,
closeText: 'Done',
...
Hi
I am using jquery 1.3.2 and asp.net mvc 1.0. Originally I was using some other rich html editor but I ran into one major problem when a user pasted in text from open office or MS office it would bring along tons of styling junk.
If a user like wrote one sentence what was like 25 characters and pasted that into my current html editor...
There is a page as transaction.html
How to open this page in a popup in another page say show_transactions.html in a jquery dialog
$dialog.html() //open transaction.html in this dialog
.dialog({
autoOpen: true,
position: 'center' ,
title: 'EDIT',
draggable: false,
width : 300,
...
Respected Members of This Site,
Good Morning to all.
Sir i need to display records Using JQuery Functionality. Records should be Scroll smothly from right to left?
...
OK I have read many posts regarding Dual Licensing using MIT and GPL licenses. But Im curious still, as the wording seems to be inclusive. Many of the Dual Licenses state that the software is licensed using "MIT AND GPL". The "AND" is what confuses me.
It seems to me that the word "AND" in the terms, means you will be licensing the...
My app already has a completed menu using jquery.menu.js found at http://wiki.jqueryui.com/Menu.
I'm now also trying to add the jquery autocomplete widget from jquery ui 1.8.1 - but both of these have a .menu() function that conflicts with each other.
If I put jquery-ui-1.8.1.custom.js first in the head, then autocomplete works but the...
Hi,
I am working on a site here: mfm.treethink.net
All the jquery works fine in Firefox, Chrome and Safari but on IE8 it gives me errors and the banner at the top doesn't work (which uses the crossSlide jQuery plugin) and as well the image rollovers don't work with the colour change.
IE8 is telling me that the errors are on lines 53, 1...
Im using this history jquery plugin http://www.mikage.to/jquery/jquery_history.html and im trying to inspect the back stack.
I can call this $.historyCurrentHash to return the current hash, but im trying to figure out how to look one step back in the stack.
if i try calling this $.historyBackStack, but i just get an 'undefined'. anyone...
Hi community,
i'm working on a jQuery plugin that's aiming to simulate one axis camera movements.
The first step to achieving this is simple : use conventional, clean markup, and get the prototype to work.
Heres how to initiate the plugin :
$('#wrapper').fluidGrids({exclude: '.exclude'});
Here's a working demo of the WIP thing : ht...
Hi
I'm new to scripting
Trying to change the css acording to a url variable, using jqURL plugin. for some reason this does not work for me:
$(function(){
var n= $.jqURL.qs();
alert(n)
$("link[rel=stylesheet]").attr({href : 'n + ".css"'});
});
the alert is there for debug, and works well, so it is a matter of how i put the var in ...
Im Looking for a good jquery scrollbar
Thanks in advance
...
i need to change something in my site, if some fields changed in database, but without reloading the page! but i have no idea how i can do it.
could you give me an idea? thanks
example:
for example, i have a forum, and i need to show a image, if new comment resieved! i can write all functions, but i don't understand when i must call ...
I have an .aspx form in which I am using Jquery Validation Plugin for validation.
Now my validation seems to be : I have two textboxes, In which any one textbox should contain input values from users.Both cannot be blank at a time. Please help me out.
Regards
Asif
...
Hi, I have a problem where if a form submission (set up to submit via AJAX) fails validation, the next time the form is submitted, it doubles the number of post requests - which is definitely not what I want to happen. I'm using the jQuery ValidationEngine plugin to submit forms and bind validation messages to my fields. This is my code ...
hallo all
i have a site which has a very big scroll on it, and there is an iframe in the middle
set to have no scroll and its height is 3000
anyway the document being opened in the iframe has a jquery dialog in it.
when im looking at the top of the parent
and click a button inside the iframe that opens the dialog
the dialog opens a...
I'm looking for a clean way to asynchronously load the following types of javascript files: a "core" js file (hmm, let's just call it, oh i don't know, "jquery!" haha), x number of js files that are dependent on the "core" js file being loaded, and y number of other unrelated js files. I have a couple ideas of how to go about it, but not...
Hi
I want to change the url or query string without reloading the page...
I have used the QUERY STRING OBJECT plugin for jquery
I have this example page
in which on click of a album it should change the query string...
Now i can change the url using the code
window.location.href = $.query.set('aid', a_id);
but it goes for reloadi...
Hello,
I am using the validator plugin of jQuery. By default the error label is added below my form. I want to add it above my form. So what I am doing is adding the code below in the validate():
errorPlacement: function (error, element) {
error.insertBefore('form#emailForm');
}
The problem is that the error label now is added a...
Hello fellow coders,
I have a question about setting the style attributes for a data cell in the jQuery.DataTable. I was able to set the width for each column when initializing the dataTable using the following:
oTable = $('#example').dataTable( {
"aoColumns" : [
{ sWidth: '40%' },
{ sWidth: '60%' }
]
} );
...