Anybody can suggest lightbox script where i can insert my div inside popup layer?
Where i can fully edit content inside popup window. ...
Where i can fully edit content inside popup window. ...
i created two variable and these two variable are using everywhere . i don't want to store these variable in to database e.g ( $username ,$password and there are 3 files using these variable load.php,index.php and add.php , i am also using jquery to load the add.php as in ajax (to add the user in JSON) $.ajax({ type: "POST", ...
I know Coda Slider and Easy Slider. But, I would like a jQuery plugin which shows the next and previous image with low opacity. Like this example: http://www.muratsuyur.com/. Should I just modify Coda Slider or Easy Slider to obtain that result? Or there's a plugin which has the whole effect? ...
Is there anyway to prevent flash files (swf) that are embeded within a webpage from opening a browser window? Eg. prevent the links within a flash file from opening new windows. Possibly with javascript/jquery? ...
this code var tip = "<p class='adobe-reader-download'>Most computers will open PDF documents automatically, but you may need to download <a title='Link to Adobe website-opens in a new window'"; tip +=" href='http://www.adobe.com/products/acrobat/readstep2.html' target='_blank'>Adobe Reader</a>.</p>"; if($("div#maincontent a[href*='.p...
Hi, I have a swf file with a semi-transparent + tint effect and a HTMl element <span id='mybutton'>My Button</span> I want to place the swf over the span, so that i can see div/span/a the content through swf. Edit 1 How can i write a JavaScript code to place this swf over the element have id='mybutton'. If any JQuery code available ...
Hi all, I have a cascading dropdown (3 of them) Type, Categories and Sub Categories. Type loads first and upon selection of Type, Category load and selection of Category, Sub Category loads. Also i have 2 buttons, "Add Category" and "Add Sub Category" Upon clicking on these buttons, i call a JQuery Modal Form to add them. I use Webmetho...
i want to show file upload dialog on click of a button thats not the part of input[type="file"] how can i do this? Basically i want to stylize the file upload control of html. ...
I get the following error in Chrome's developer tools window when I try to set a cookie using this jQuery plugin: Uncaught Error: SECURITY_ERR: DOM Exception 18 What does this error mean and how can I fix it? I get the same error when I use this jQuery plugin. ...
What is the rule behind to divide this html in var tip? var tip = "<p class='adobe-reader-download'>Most computers will open PDF documents automatically, but you may need to download <a title='Link to Adobe website-opens in a new window'"; tip += " href='http://www.adobe.com/products/acrobat/readstep2.html' target='_b...
I want to transform (with jquery.xslt.js) xml to be preserving tags in text nodes. Xml looks like: <example> <text> Some text with <br /> and <img src="source" /> then text .... </text> </example> I want to have: <div class="example"> <p>Some text with <br /> and <img src="source" /> then text ....</p> </div> If I...
I use jqGrid with many columns contains Boolean information, which are displayed as checkboxes inside of table (see http://www.ok-soft-gmbh.com/VerticalHeaders/TestFixedO.htm as an example). To display information more compact I use vertical column headers. It works very well and works in jqGrid in all browsers (see my discussion with To...
I'm using http://dev.mariusilie.net/content/simple-tooltip-jquery-plugin for my tooltip and simple modal for a modal window. I've got a link in the modal window and when I put my mouse over it, the tooltip is there, but it's beneath the modal window. I think it has to do with "z-index". I looked and I think the modal window is at 1000. I...
i have a certain dates that come from database and want to block those dates from selecting, how would i do that? like Alert when certain days are clicked on the jquery datepicker? i am using asp.net C#. and pass the dates from server side to client? any help? ...
if one of the main benefits of jquery is cross browser javascript support, does that become less valuable as more browsers aim to become standards compliant and the same javascript works on all browsers? ...
Hello, I need to perform asp.net web-service function call via jQuery and pass asp.net application path to it. That's the way I'm trying to do it (code is located within asp.net page, e.g. aspx file): var d = "{'str':'<%=System.DateTime.Now.ToString() %>', 'applicationPath':'<%=GetApplicationPath() %>'}"; $.ajax({ type: "POST...
Hi, I'm writing a little jQuery component that animates in response to button presses and also should go automatically as well. I was just wondering if this function recursive or not, I can't quite work it out. function animate_next_internal() { $('#sc_thumbnails').animate( { top: '-=106' }, 500, function() { an...
My fieldset doesn't display onclick, what am I doing wrong? $(document).ready(function(){ $('#More').toggle( function() { $('#search', this).slideDown(); }, function() { $('#search', this).slideUp(); }); }); <div> Item 1 <a href="#" id="More">Item 2</a> Item 3 <fieldset id="search" style="display: none;"> ...
*EDIT --- Trying an even more simplified version.... Still doesn't work... Returns $(this).closest is not a function error... * $("#fitable input[name^=f1]").focus(function() { var newRow = '<tr><td></td><td></td><td></td><td></td></tr>'; $(this).closest("tbody").append(newRow); }); Original Post Pretty new to jQu...
In my asp.net MVC application I am using in place editors to allow users to edit fields without having a standard form view. Unfortunately, since I am using Linq to Sql combined with my data mapping layer I cannot just update one field at a time and instead need to send all fields over at once. So the solution I came up with was to sto...