I have one page from which i have to redirect to a page which is in some other application or can say in other domain.I want waiting screen till the page is loaded.I want to do it by jquery.Can any one help me-
...
hey guys,
i wonder if this is the best solution?
$('.folder a').click(function(e) {
e.preventDefault();
});
$('.folder a').dblclick(function(e) {
window.location.replace($(this).attr("href"));
});
it's working! would you do it in a different manner?
...
Hello everyone,
I have a menu which contains a delete button to delete items from it. I put all inside an updatepanel to make partial postbacks. The problem is after i made the post back the jquery jdmenu pluggin stops work. I suppose i should include something like this
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(Ini...
Some of the jquery menus provided by apycom are quite impressive. Are there any other jquery menu plugins which are as good as apycom, but which are available as open source.
We are currently using Superfish but its quite simple and doesn't have much of the animation effects in there.
...
I would like to Disable Back button when user click on logoff for this i delete only cookies of that user not session in my application. And want to disable Back button
if(getCookie('username') == ""){
Disable back button;// we use "window.history.redirect" for javascript i look jquery for this
}
Please help me..
...
Hi,
I am having some issue with the enter key within IE6 together with the jQuery UI Dialog confirmation box that has just an "Ok" button on it.
$("#myBox").dialog({
autoOpen: false,
closeOnEscape: false,
resizable: false,
modal: true,
draggable: false,
position: ...
Hi All i have a json formatted out put as
{"baseUrl":"\/","success":true}
how get the value of success ??
...
Hi,
I have a page that uses JQuery for an ajax call. Viewing the page in Chrome shows the following error in the developer console:
Uncaught TypeError: Cannot set property 'display' of undefined
While the same page runs in firefox 3.6.6 without any error in the firebug console.
The error emanates from a line in j-query-1.4.2 ( as s...
In the following code the last line doesn't work in my way:
$('button.goal').click(function () {
$('div.scorer_away').animate({
width: 'hide',
opacy: 'hide'
}, 'slow')
.delay(2500)
.animate({
width: 'show',
opacy: 'show'
}, 'slow');
$('span.scorer_away').delay(3000).prepend('<img src="chofbauer.png" alt="" />');
How ca...
Can I avoid using MS AJAX completely while developing ASP.NET Webforms applications and use jQuery/jQuery Tools instead?
jQuery seems to be much snappier, has better community, extremely small file size (24kb). It's also seems like an obvious choice for ASP.NET MVC development.
But what about Webforms? I really would rather not use AJA...
I am showing three divs using jquery using this,
$("#ImageButtonDiv").show();
$("#ResultsDiv").show();
$("#PagerDown").show();
Is my following statement valid?
$("#ImageButtonDiv #ResultsDiv #PagerDown").show();
Any suggestion...
...
I had done a page for dragging a tree node from ASP.net TreeView and drop it on any portion. AND I HAVE ENABLED THE CHECKBOX IN TreeView. But I dont want to drag the parent nodes. I want only the child nodes to be dragged. How is it possible ? the jquery which I had used for dragging and dropping the node is as shown. What should I apply...
I am trying to figure out what would be the jQuery equivalent to the following code:
var temp = $('#logoutFrame2').contents().find('html').html();
try {
var temp1 = document
.getElementById('logoutFrame2')
.contentWindow
.document
.getElementById('theCBO...
Hi all,
I am stuck over a question in which I got to make a Hidden Text box to store a value.
But I have seen that JQuery is capable to add some value to a Hidden Text box.
I am not sure which is the best way to hide the value which will be stored to the Database.
Please look at the codes below:
Traditional way:
<input type="hidden" i...
Hi, im trying to hide all the selected element on document ready, but only the element in the first li is hide, all other li requires to run my hover script before its hide
here is the rough structure
<#container>
<.block_content>
<ul>
<li><.selected_content></>
<li><.selected_content></>
<li><....
Hi,
Usually you don't want to include the whole of jquery ui as you are only using certain parts. Using google cdn, it is possible to include different parts of the CSS files, but I can't find the JS ones eg (jquery.ui.core.min.js).
CSS:
http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/themes/base/jquery.ui.core.css
http://ajax.goo...
Hi all,
I'm starting a project that requires basic CRUD operations, paging, sorting... on a set of data through a web page and I'd like to do the view part in jQuery.
I've googled free grid panel and jquery and I found lots of libraries: datatables, YUI datatable, extJs....
Any recommendation?
Thanks a lot
...
How to convert the onchange="this.form.submit()" to jQuery format?
<form action="process.php" method="post">
<select name="qty" onchange="this.form.submit()">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
</select>
</form>
I got a problem because...
Hi everyone.
I am trying to 'replace' the button on select inputs. I have looked at the select replacement plugins in jquery but they are all a little bloated IMO. What I'd like to achieve is a simple span positioned over the dropdown button of the select box and when it is clicked make the select options drop.
Here is what I have:
$(...
i have a sample code. This will delete entire row if nor args provided. If provided it will delete the given rows.
function deleteTableRows(tableID)
{
rowsToDel = document.getElementById('getrows').value;
if(document.getElementById(tableID) !== undefined)
{
var tbl = document.getElementById(tableI...