active questions tagged jquery - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T16:36:35Z http://stackoverflow.com/feeds/tag/jquery http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1922807/jquery-after-i-submit-a-form-the-second-one-just-posts-to-page-instead-of-ajax-su 0 jquery after i submit a form the second one just posts to page instead of ajax submit Tim H. 2009-12-17T16:07:38Z 2009-12-17T16:28:41Z <p>Ok basically my problem is what i stated in the title. I'm using jquery tabs and after i submit 1 form and i go about adding another news post instead of doing the ajax submit it just posts to the page.</p> <pre><code>&lt;script type="text/javascript"&gt; //if submit button is clicked $('#submit').live("click",function () { //Get the data from all the fields var title = $('input[name=title]').val(); var newspost = tinyMCE.get('newspost').getContent(); var type = $('input[name=type]').val(); //Simple validation to make sure user entered something //If error found, add hightlight class to the text field //organize the data properly var data = 'title=' + title + '&amp;post=' + newspost + '&amp;id=' + type; //start the ajax $.ajax({ //this is the php file that processes the data and send mail url: "pages/news.php", //GET method is used type: "POST", //pass the data data: data, //Do not cache the page cache: false, //success success: function() { $('#news_form').html("&lt;div id='message'&gt;&lt;/div&gt;"); $('#message').html("&lt;h2&gt;News Article has been Submitted!&lt;/h2&gt;") .append("&lt;p&gt;Now visable on main page&lt;/p&gt;") .hide() .fadeIn(1500, function() { $('#message').append("&lt;img id='checkmark' src='images/check.png' /&gt;"); }); } }); //cancel the submit button default behaviours return false; }); &lt;/script&gt; &lt;div id="news_form"&gt; &lt;form id="form1" name="form1" method="post" action=""&gt; &lt;p&gt;Title: &lt;label&gt; &lt;input name="title" type="text" id="title" size="40" /&gt; &lt;/label&gt; &lt;/p&gt; &lt;p&gt; &lt;label&gt; &lt;textarea name="newspost" id="newspost" cols="45" rows="5"&gt;&lt;/textarea&gt; &lt;/label&gt; &lt;/p&gt; &lt;p&gt;&lt;input type="hidden" name="type" value="postadd" /&gt; &lt;label&gt; &lt;input type="submit" value="Submit" id="submit"&gt; &lt;/label&gt; &lt;/p&gt; &lt;/form&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/1922782/jquery-different-selectors-for-descendants 1 jQuery - Different selectors for descendants? Sonny Boy 2009-12-17T16:03:42Z 2009-12-17T16:24:47Z <p>Can someone please explain how the selectors work for the different descendants? I've looked a bit online but the descriptions I've found so far don't seem to be terribly different.</p> <p>For example, what's the difference between these three?</p> <pre><code>$('table tr') $('table &gt; tr') $('table + tr') </code></pre> http://stackoverflow.com/questions/1922870/jquery-ajax-wont-work 0 jquery ajax won't work unknown (google) 2009-12-17T16:17:40Z 2009-12-17T16:24:20Z <p>hey, i'm trying to change the html of a div after an ajax request, the ajax request works. the data is correct but the selector can't seems to find the div</p> <p>here's the code</p> <pre><code>$(".home .up_0").click(function(){ $.post("includes/vote.php", { truc : $(this).attr("id") }, function(data){ if(data=='fail') { alert("Error."); } else { $(this).parents('.home').find('.score_neutre').html(data); } } ); }); </code></pre> http://stackoverflow.com/questions/1922797/jquery-onload-prettyphoto 0 jquery onload prettyphoto Aaron R 2009-12-17T16:05:53Z 2009-12-17T16:23:21Z <pre><code>$(document).ready(function(){ $("a[rel^='prettyPhoto']").prettyPhoto(); }); </code></pre> <p>How do I get this to load onload instead of when clicked?</p> http://stackoverflow.com/questions/1922599/jquery-ajax-doesnt-work 1 jquery ajax doesnt work unknown (google) 2009-12-17T15:40:04Z 2009-12-17T16:12:37Z <p>hey guys, here's my function : </p> <pre><code>$(".home .up_0").click(function() { $.post("includes/vote.php", {truc : $(this).attr("id")}, function(data) { if(data==1) { $(this).parents('.home').find('.score_neutre').append( $(this).parents('.home').find('.score_neutre').val()+1 ); } else { alert("Error !"); } }, "json" ); }); </code></pre> <p>When I click everything works but it doesn't change the <code>.score_neutre</code> value (which is 1 and I want it to change to 2)</p> http://stackoverflow.com/questions/1922787/jquery-how-can-you-test-for-the-absence-of-a-class 0 jQuery: How can you test for the *absence* of a class? Jim G. 2009-12-17T16:04:20Z 2009-12-17T16:05:51Z <p>Given that this is the correct way to see if 'this' has class 'selected':</p> <pre><code>if ($(this).hasClass('selected')) { // logic goes here } </code></pre> <p>What is the correct way to test for the <strong>absence</strong> of a class?</p> <p>That is, how can I test if 'this' does <em>not</em> have class 'selected'?</p> http://stackoverflow.com/questions/1921292/jquery-and-net-2-0 0 jQuery and .NET 2.0 The real napster 2009-12-17T12:01:21Z 2009-12-17T15:50:59Z <p>Hi</p> <p>I made a .NET 2.0 Application using jQuery.</p> <p>However when I deploy it on my server that doens't have .NET 3.5 installed it doesn't work.</p> <p>I get no errors and have no idea how to debug it.</p> <p>I use jquery-1.3.2.min.js.</p> <p>Works perfect in my test environment and on my other server with 3.5 installed.</p> <p>Once it is uploaded to the production server with 2.0 every callback in ASP.NET fails.</p> <pre><code>&lt;script type="text/javascript"&gt; $(document).ready(function() { var item = $("[id$='txtItemName']"); var category = $("[id$='ddlCategories']"); var record = $("[id$='txtRecordID']"); $("#btnSave").click(function() { if (item.val().length == 0) { alert("Please enter item name first."); return false; } if (category.val().length == 0) { alert("Please select a category."); return false; } var paramArray = ["testText", escape(item.val()), "categoryID", category.val(), "recordID", 1]; PageMethod("SaveMyData", paramArray, AjaxSucceeded, AjaxFailed); }); }); function AjaxSucceeded (result) { alert("lykkedes" + result); } function AjaxFailed(result) { alert("failed" + result); } function PageMethod(fn, paramArray, successFn, errorFn) { var pagePath = window.location.pathname; //Create list of parameters in the form: //{"paramName1":"paramValue1","paramName2":"paramValue2"} var paramList = ''; if (paramArray.length &gt; 0) { for (var i = 0; i &lt; paramArray.length; i += 2) { if (paramList.length &gt; 0) paramList += ','; paramList += '"' + paramArray[i] + '":"' + paramArray[i + 1] + '"'; } } paramList = '{' + paramList + '}'; //Call the page method $.ajax({ type: "POST", url: "DataProcessor.aspx?" + fn + "=1", contentType: "application/json; charset=utf-8", data: paramList, dataType: "json", success: successFn, error: errorFn }) ;} &lt;/script&gt; </code></pre> <p>And the DataProcessor procedure looks like this:</p> <pre><code>public void SaveMyData() { System.IO.StreamReader sr = new System.IO.StreamReader(Request.InputStream); string line = ""; line = sr.ReadToEnd(); JObject jo = JObject.Parse(line); string temp = (string)jo["recordID"]; Response.Write(temp); } </code></pre> <p>I enter the AjaxFailed(result) when I try it....</p> <p>Any help and suggestions are much appriciated...</p> http://stackoverflow.com/questions/1922559/jquery-drag-drop-into-a-text-area 0 jQuery Drag & Drop into a Text Area OneNerd 2009-12-17T15:34:42Z 2009-12-17T15:50:24Z <p>Using jQuery, and looking to let user drag a placeholder into a text area.</p> <p>Each placeholder is a <code>&lt;span&gt;</code> which has a <code>class='placeholder'</code>. The text area <code>id</code> is simply <code>'main_text'</code>.</p> <p>So, user should be able to drag each placeholder <code>span</code> on top of text area, drop it, and then text gets inserted.</p> <p>Most desirable effect would be to insert text where they drop the placeholder, but I have pretty much given up on that one. At this point, just to get it working so it inserts the text anywhere at all would be a good start.</p> <p>Has anyone successfully done this? Thanks -</p> http://stackoverflow.com/questions/1677695/how-to-change-the-font-size-in-jqgrid 0 How to change the font size in jqgrid ? keisimone 2009-11-05T00:56:34Z 2009-12-17T15:47:15Z <p>Hi I am using jqgrid.</p> <p>It is already running with the ui-lightness. How do I change the font size inside the grid?</p> <p>Please advise.</p> <p>Thank you.</p> http://stackoverflow.com/questions/1921855/jquery-how-can-i-temporarily-disable-the-onclick-event-listener-after-the-event 1 jQuery - How can I temporarily disable the onclick event listener after the event has been fired? aldux 2009-12-17T13:39:12Z 2009-12-17T15:35:27Z <p>How can I temporarily disable the onclick event listener, (jQuery preferred), after the event has been fired?</p> <p>Example:</p> <p>After the user clicks on the button and fires this function below, I want to disabled the onclick listener, therefore not firing the same command to my django view.</p> <pre><code>$(".btnRemove").click(function(){ $(this).attr("src", "/url/to/ajax-loader.gif"); $.ajax({ type: "GET", url: "/url/to/django/view/to/remove/item/" + this.id, dataType: "json", success: function(returned_data){ $.each(returned_data, function(i, item){ // do stuff }); } }); </code></pre> <p>Thanks a lot,</p> <p>Aldo</p> http://stackoverflow.com/questions/1922489/jquery-fill-glass-effect 0 jquery fill glass effect Martin 2009-12-17T15:26:03Z 2009-12-17T15:30:57Z <p>I'm looking for a jqeury or javascript that fill up a glass of water. So when clicking on one button you add water to the glass and when clicking on another you remove water from the glass. Just wonder if someone already have written something like this that I can use. Thanks!</p> http://stackoverflow.com/questions/1922018/jquery-ui-tools-tab-panes-all-showing-at-once 0 Jquery ui tools - tab panes all showing at once Kevin 2009-12-17T14:06:16Z 2009-12-17T15:28:52Z <p>I'm using Jquery tools for my tabs - something's gone wrong which I don't know (as everything was working) .. all the panels are being displayed at once for some reason... here is the code:</p> <pre><code>&lt;div id="form"&gt; &lt;ul class="tabs"&gt; &lt;li&gt;&lt;a href="#"&gt;&lt;%= GetResourceString( "TabHeaderBasic" ) %&gt;&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#"&gt;&lt;%= GetResourceString( "TabHeaderDetailed" ) %&gt;&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;div class="panes"&gt; &lt;div class="pane"&gt; &lt;h2&gt;&lt;%= GetResourceString( "PersonalInfoHeader" ) %&gt;&lt;/h2&gt; &lt;%= this.TextBox( x =&gt; x.FirstName ).LocalizedLabel().LocalizedTitle().Size(35).Required() %&gt; &lt;%= this.TextBox( x =&gt; x.LastName ).LocalizedLabel().LocalizedTitle().Size(35).Required() %&gt; &lt;%= this.ValidationMessage( x =&gt; x.LastName ) %&gt; &lt;%= this .Select( x =&gt; x.Gender ) .LocalizedLabel() .LocalizedTitle() .Options( ViewModel.GenderOptions ) .Selected(ViewModel.Gender.ToString()) .FirstOption("", "Not Specified") .Required() %&gt;&lt;br /&gt; &lt;%= this.DateTextBox( x =&gt; x.DateOfBirth ).LocalizedLabel().LocalizedTitle().Required() %&gt; &lt;%= this.ValidationMessage( x =&gt; x.DateOfBirth ) %&gt; &lt;h2&gt;&lt;%= GetResourceString( "AccountDetailsHeader" ) %&gt;&lt;/h2&gt; &lt;%= this.TextBox( x =&gt; x.EmailAddress ).LocalizedLabel().LocalizedTitle().Size(35).Required() %&gt; &lt;% if ( ViewModel.IsExistingUser ) { %&gt; &lt;%= this.Password(x =&gt; x.OldPassword).LocalizedLabel().LocalizedTitle().Size(35)%&gt; &lt;% } %&gt; &lt;%= this.Password(x =&gt; x.Password).LocalizedLabel().LocalizedTitle().Size(35)%&gt;&lt;br /&gt; &lt;%= this.Password(x =&gt; x.PasswordConfirmation).LocalizedLabel().LocalizedTitle().Size(35)%&gt;&lt;br /&gt; &lt;span class="row"&gt; &lt;%= this.CheckBox( x =&gt; x.AgreesToTermsAndConditions ).LocalizedLabelAfter() %&gt; &lt;/span&gt;&lt;br /&gt; &lt;% if ( !ViewModel.IsExistingUser ) { %&gt; &lt;%= this.CheckBox( x =&gt; x.AgreesToTermsAndConditions ).LocalizedLabelAfter().Required() %&gt; &lt;%= this.ValidationMessage( x =&gt; x.AgreesToTermsAndConditions ) %&gt; &lt;%= Html.GenerateCaptcha() %&gt; &lt;%= this.ValidationMessage( x =&gt; x.CaptchaValid ) %&gt; &lt;% } %&gt; &lt;p&gt; &lt;% if ( ViewModel.IsExistingUser ) { %&gt; &lt;%= this.SubmitButton( GetResourceString( "ButtonSubmitEdit" ) ).Class( "register btn" ) %&gt; &lt;% } else { %&gt; &lt;input type="button" class="next btn" value="&lt;%= GetLocalResourceObject("ButtonNext") %&gt;" /&gt; &lt;%= this.SubmitButton( GetResourceString("ButtonSubmitBasic") ).Class( "register btn" )%&gt; &lt;% } %&gt; &lt;/p&gt; &lt;/div&gt; &lt;div class="pane"&gt; &lt;h2&gt;&lt;%= GetResourceString( "AddressHeader" ) %&gt;&lt;/h2&gt; &lt;% Html.RenderPartial( "EditAddress", ViewModel.Address ); %&gt; &lt;span class="row"&gt; &lt;%= this.CheckBox( x =&gt; x.OnlyShowLocalEvents ).LocalizedLabelAfter().LocalizedTitle() %&gt; &lt;/span&gt;&lt;br /&gt; &lt;h2&gt;Other Details&lt;/h2&gt; &lt;%= this.TextBox( x =&gt; x.PhoneNumber ).LocalizedLabel().LocalizedTitle() %&gt; &lt;p&gt; &lt;% if ( ViewModel.IsExistingUser ) { %&gt; &lt;%= this.SubmitButton( GetResourceString( "ButtonSubmitEdit" ) ).Class( "register btn" ) %&gt; &lt;% } else { %&gt; &lt;input type="button" class="previous btn" value="&lt;%= GetLocalResourceObject("ButtonPrevious") %&gt;" /&gt; &lt;%= this.SubmitButton( GetResourceString( "ButtonSubmit" ) ).Class( "register btn" ) %&gt; &lt;% } %&gt; &lt;/p&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> <p>CSS</p> <pre> /* root element for tabs */ ul.tabs { list-style:none; margin:0 !important; padding:0; border-bottom:1px solid #666; height:30px; } /* single tab */ ul.tabs li { float:left; text-indent:0; padding:0; margin:0 !important; list-style-image:none !important; } /* link inside the tab. uses a background image */ ul.tabs a { background: url(../images/blue.png) no-repeat -420px 0; font-size:11px; display:block; height: 30px; line-height:30px; width: 134px; text-align:center; text-decoration:none; color:#333; padding:0px; margin:0px; position:relative; top:1px; } ul.tabs a:active { outline:none; } /* when mouse enters the tab move the background image */ ul.tabs a:hover { background-position: -420px -31px; color:#fff; } /* active tab uses a class name "current". it's highlight is also done by moving the background image. */ ul.tabs a.current, ul.tabs a.current:hover, ul.tabs li.current a { background-position: -420px -62px; cursor:default !important; color:#000 !important; } /* Different widths for tabs: use a class name: w1, w2, w3 or w2 */ /* width 1 */ ul.tabs a.s { background-position: -553px 0; width:81px; } ul.tabs a.s:hover { background-position: -553px -31px; } ul.tabs a.s.current { background-position: -553px -62px; } /* width 2 */ ul.tabs a.l { background-position: -248px -0px; width:174px; } ul.tabs a.l:hover { background-position: -248px -31px; } ul.tabs a.l.current { background-position: -248px -62px; } /* width 3 */ ul.tabs a.xl { background-position: 0 -0px; width:248px; } ul.tabs a.xl:hover { background-position: 0 -31px; } ul.tabs a.xl.current { background-position: 0 -62px; } /* initially all panes are hidden */ div.panes label { font-size: 95%; font-weight: bold; color: #222222; line-height: 150%; padding-bottom: 3px; display:block; } /* tab pane styling */ /*div.panes > div.pane*/ div.panes > div.pane { padding: 15px 10px; border: 1px solid #999; border-top: 0; font-size: 14px; background: #fff 0 5px; height: 100%; } </pre> <p>initialization code</p> <pre> function initializeWizard() { // $("ul.tabs").tabs("div.panes > div"); $("ul.tabs").tabs("div.panes > div"); var api = $("ul.tabs").tabs(0); $(":input[type='button'].next").click(function() { api.next(); return false; }); $(":input[type='button'].previous").click(function() { api.prev(); return false; }); } </pre> http://stackoverflow.com/questions/1921883/javascript-problem-when-mixxing-cutesoft-edit-and-colorbox 0 Javascript problem when mixxing Cutesoft Edit and Colorbox Patrick 2009-12-17T13:43:12Z 2009-12-17T15:00:27Z <p>I have a slight javascript problem, and this is the reason to why i dislike javascript. On my page i use Colorbox to popup a div with the possibility to add a new image. Then i use Cutesoft Editor as an Image Picker that opens a Window where the user can select an image. My problem is that the Image Picker window opens behind the Colorbox, so the user can't select the image unless they close the popup. <img src="http://gazet.se/TemporaryFiles/preview.png" alt="Picture of the colorbox and the button for the image picker"> I have been reading all the documentation for Cutesoft that i can find and the only command that i can find is editor.FocusDocument() but it still does't work. I am starting to suspect that Colorbox is causing this problem and that Cutesoft isn't permitted to display a popup over Colorbox.</p> <p><a href="http://www.cutesoft.net/developer+guide/index.html" rel="nofollow">Cutesoft guide</a></p> <p><a href="http://colorpowered.com/colorbox/" rel="nofollow">Colorbox guide</a></p> <p>Code to show the image popup (Executes when the button on the picture is pressed):</p> <pre><code>function callInsertImage(clientID) { var editor1 = document.getElementById('&lt;%=Editor1.ClientID%&gt;'); editor1.FocusDocument(); var editdoc = editor1.GetDocument(); editor1.ExecCommand('new'); editor1.ExecCommand('InsertImage'); editor1.FocusDocument(); InputURL(clientID); editor1.FocusDocument(); } function InputURL(clientID) { var editor1 = document.getElementById('&lt;%=Editor1.ClientID%&gt;'); var editdoc = editor1.GetDocument(); var imgs = editdoc.images; if(imgs.length &gt; 0) { document.getElementById(clientID).value = imgs[imgs.length - 1].src; if (document.getElementById(clientID).value.substr(0, 19) == 'http://www.gazet.se') document.getElementById(clientID).value = "~" + document.getElementById(clientID).value.substr(19); editor1.ExecCommand('new'); document.getElementById(clientID).focus(); } else { setTimeout(function() { InputURL(clientID); }, 500); } } </code></pre> <p>Code to open colorbox:</p> <pre><code>function NewImage() { ResetBox(); this.boxTitle.innerHTML = 'Ny bild'; this.buttonSave.value = 'Lägg till bilden'; $.fn.colorbox({open:true,width:"700px",inline:true,href:"#inline_example1",speed:100}); } </code></pre> http://stackoverflow.com/questions/1607755/problem-calling-wcf-service-library-from-jquery 0 Problem Calling WCF Service Library from jQuery bean 2009-10-22T14:44:20Z 2009-12-17T15:00:03Z <p>I have a WCF Service Library exposed through my ASPX site as follows</p> <pre><code>[System.ServiceModel.OperationContract] [System.ServiceModel.Web.WebInvoke( Method= "POST", RequestFormat=System.ServiceModel.Web. WebMessageFormat .Json, ResponseFormat=System.ServiceModel.Web.WebMessageFormat .Json)] LogonResponse Logon(LogonRequest logonRequest); [System.Runtime.Serialization.DataContract] [ Serializable()] public class LogonRequest { [System.Runtime.Serialization.DataMember] public string EMailAddress; [System.Runtime.Serialization.DataMember] public string Password; } </code></pre> <p>In My test page I can call either through MS Ajax : -</p> <pre><code>&lt;asp:ScriptManager ID ="ScriptManager1" runat="server"&gt; &lt;Services&gt; &lt;asp:ServiceReference Path="~/testService.svc" /&gt; &lt;/Services&gt; &lt;/asp:ScriptManager&gt; . . . function clsLogonRequest(eMailAddress, password) { this .EMailAddress = eMailAddress; this .Password = password; } function login(eMailAddress, password) { var LogonRequest = new clsLogonRequest(eMailAddress, password); revx.API.IAPI.Logon(LogonRequest, onSuccess, onFailure); } function onSuccess(result) { $( "#txtSessionId").val(result.SessionId); $( "#txtUserName").val(result.Name); $( "#txtUserId").val(result.UserId); } </code></pre> <p>which works fine, or through a jQuery $.ajax call: -</p> <pre><code>$(document).ready(function() { $( "#Button1").click(function() { var LogonRequest = new clsLogonRequest( '*************' , '***********'); $.ajax({ type: "POST", url: "testService.svc/Logon", data: "{'logonRequest':" + JSON.stringify(LogonRequest) + "}" , contentType: "application/json; charset=utf-8", dataType: "json", success: function(msg) { alert(msg.d); } }); }); }); </code></pre> <p>Which does not - under FireBug I can see the 500 Internal Server Error message and the exception starts</p> <pre><code>{"ExceptionDetail":{"HelpLink":null,"InnerException":null,"Message":"The token '\"' was expected but found '''.","StackTrace":" at System.Xml.XmlExceptionHelper.ThrowXmlException(XmlDictionaryReader reader, String res, String arg1, String arg2, String arg3)\u000d\u000a at System.Xml.XmlExceptionHelper .ThrowTokenExpected(XmlDictionaryReader reader, String expected, Char found)\u000d\u000a at System.Runtime... </code></pre> <p>Why does it appear that the jQuery call is passing XML when I'm specifically telling it not to (and how can I stop it so that calls from all sources are handled as naturally as possible)?</p> <p>Thanks in advance.</p> <p><strong>EDIT:</strong> </p> <p>Thanks for the suggestions, I've looked at what you said and think that my explanation of the problem was not clear enough.</p> <p>The problem is not that JSON is not being sent, it is being sent and is in the correct format, I can see that from firebug. The problem is that the WCF Service Library appears to be expecting XML and falls over when it receives JSON.</p> <p>Just to be sure I haven't overlooked the suggested solution, here is the web.Config extract - I've tried removing from the behaviour and removing the behaviorConfiguration attribute from the services/service/endpoint tag and that just makes the whole thing fail without getting out of the page.</p> <pre><code>&lt;system.serviceModel&gt; &lt;behaviors&gt; &lt;serviceBehaviors&gt; &lt;behavior name ="MyServiceTypeBehaviors "&gt; &lt;serviceDebug includeExceptionDetailInFaults="true" /&gt; &lt;serviceMetadata httpGetEnabled="true" /&gt; &lt;/behavior&gt; &lt;/serviceBehaviors&gt; &lt;endpointBehaviors&gt; &lt;behavior name ="AspNetAjaxBehavior"&gt; &lt;enableWebScript/&gt; &lt;/behavior&gt; &lt;/endpointBehaviors&gt; &lt;/behaviors&gt; &lt;serviceHostingEnvironment aspNetCompatibilityEnabled= "true " /&gt; &lt;services&gt; &lt;service name ="test.API.API" behaviorConfiguration = " MyServiceTypeBehaviors"&gt; &lt;endpoint behaviorConfiguration="AspNetAjaxBehavior" binding = " webHttpBinding" contract="test.API.IAPI" /&gt; &lt;endpoint contract ="IMetadataExchange" binding= " mexHttpBinding" address="mex" /&gt; &lt;/service&gt; &lt;/services&gt; &lt;/system.serviceModel&gt; </code></pre> <p>Thanks In Advance</p> http://stackoverflow.com/questions/1437258/pass-a-value-and-reload-user-control-from-javascript 2 Pass a value and reload User Control from Javascript balexandre 2009-09-17T07:35:12Z 2009-12-17T14:37:57Z <p>Hi guys,</p> <p>I have a User control (because I use the same in other page, so I thought I should reuse code and not double my work), but in this page I show a list of companies and each one has a <strong>company number</strong>, I need to pass this company number to that User Control and it has to reload using that passed company number.</p> <p>How can I accomplish this?</p> <p>what I have so far:</p> <p><img src="http://www.balexandre.com/temp/2009-09-17%5F0917.png" alt="alt text" /></p> <p>the <strong>Show company structure</strong> link is made of</p> <pre><code>&lt;a href="javascript:showStruct('112:201334607','5564967221');" class="showStructLink"&gt;Show company structure&lt;/a&gt; </code></pre> <p>the <strong>showStruct</strong> method is written like</p> <pre><code> function showStruct(pid, cnr) { if (_showStrut == 0) return; // fancy stuff to be more apealing visually $("#tdSearch").removeClass("tabTitleUp01").addClass("tabTitleDownUp01"); $("#tdStruct").removeClass("tabTitleDownUp02").addClass("tabTitleUp02"); $("#srtr1").hide(); $("#srtr2").hide(); $("#sttr1").show(); // enable Search Results tab to be clicked in order to get back $("#tdSearch") .addClass("pointer") .bind("click", function() { hideStructure(); }); // pass the company number and reload wcCompanyStruture web user control // __doPostBack('RefreshWebUserControl', cnr); } </code></pre> <p>I can make a simple aspx page with the control inside and from jQuery invoke $.get() to run and populate the control correctly, but I really want to learn how to do this properly, using the ASP.NET AJAX Method to send a number and call RefreshData on it</p> <p>using code-behind it is easy to refresh the user control, just invoking</p> <pre><code>wcCompanyStruture.RefreshData("companyNumberHere"); </code></pre> <p>what do I need to do in my User Control side and well in the showStruct method to create this behavior?</p> <p>All help is appreciated, Thank you.</p> http://stackoverflow.com/questions/165446/where-can-i-find-a-good-jquery-drop-shadow-plugin 3 Where can I find a good jQuery drop shadow plugin? RedWolves 2008-10-03T02:35:31Z 2009-12-17T14:31:43Z <p>Does anyone have a good recommendation for a drop shadow jQuery plugin?</p> <p>I've been working on a project that had every element on the page with a subtle drop shadow, we started using <a href="http://www.ruzee.com/blog/shadedborder/" rel="nofollow">RUZEE</a> to do the shadows but there was a severe performance hit when you had more then 4 or 5 shadows being calculated on the page.</p> <p>I went to <a href="http://damnralph.com/2008/08/27/jQueryPluginSimpleShadow.aspx" rel="nofollow">writing my own plugin</a>, I call it simple shadow and it only uses jQuery to inject images in floating div's around the div you want a drop shadow. Nothing elegant but for the purpose of completing that site it worked without performance hits. </p> <p>Now my plugin isn't anything special but I am still in search for a good light weight shadow plugin.</p> http://stackoverflow.com/questions/1894812/jquery-tabs-reload-content-on-button-click 0 Jquery tabs reload content on button click Martin 2009-12-12T21:49:33Z 2009-12-17T14:14:40Z <p>I'm using jquery tabs (<a href="http://docs.jquery.com/UI/API/1.7.2/Tabs" rel="nofollow">http://docs.jquery.com/UI/API/1.7.2/Tabs</a>). Jquery version 1.3.2 and Jquery UI version 1.7.2 and Ive been testing in firefox 3.5.6.</p> <p>When selecting a tab I just add the current date to the content area html. I also have a link with the class name "Button". When this link is clicked I want to reload the content of the currently selected tab. But with the solution I've tried I can't get it to work. I can see that the "button clicked" event is loaded but the following code isn't reloading my data:</p> <pre><code>$(".Tabs").tabs('load', $(".Tabs").tabs('option', 'selected')); </code></pre> <p>I have also been testing with:</p> <pre><code>var selected = $(".Tabs").tabs('option', 'selected'); $(".Tabs").tabs('select', null); $(".Tabs").tabs('select', selected); </code></pre> <p>But that doesn't work either, my select method never gets called when pushing the button</p> <p>This is my jquery code:</p> <pre><code> $(function() { var $tabs = $(".Tabs").tabs({ selected: null, select: function() { alert("this doesn't run on button click"); //Sets Content's html to current date $("#Content").html(new Date); } }); $('.Button').click(function() { alert("this runs on button click"); //Here I want to reload the current selected tab $(".Tabs").tabs('load', $(".Tabs").tabs('option', 'selected')); return false; }); $('.Tabs').tabs('select', 0); // Select first tab }); </code></pre> <p></p> <p>This is the html:</p> <pre><code>&lt;div class="Tabs"&gt; &lt;ul&gt; &lt;li&gt;&lt;a href="#Content"&gt;Tab1&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#Content"&gt;Tab2&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;div id="Content"&gt; &lt;/div&gt; &lt;/div&gt; &lt;a class='Button' href='#'&gt;Load Content Again&lt;/a&gt; </code></pre> http://stackoverflow.com/questions/1922061/multiple-jcarousels-in-ie7 0 Multiple jCarousels in IE7 Gib 2009-12-17T14:13:15Z 2009-12-17T14:13:15Z <p>Hi,</p> <p>I’m working on an MVC app using the jCarousel plugin where I have one carousel on a view and a second carousel on a partial view returned as a dialog when a link is clicked.</p> <p>My issue is that on the second carousel the each function below (from jquery.jcarousel.js) is not hit in IE7 so the carousel doesn’t load.</p> <pre><code>$.fn.jcarousel = function(o) { return this.each(function() { new $jc(this, o); }); }; </code></pre> <p>My code for loading the dialog (ConfectionaryDialog is just a div):</p> <pre><code>function ShowConfectionaryPopup() { $.get('/Home/ConfectionaryOption', {}, function(data) { $('#ConfectionaryDialog').dialog('option', 'buttons', { "Continue": function() { $('#ConfectionaryDialog').dialog("close"); window.location = "/Order/Confirm"; } }); $('#ConfectionaryDialog').empty().html(data).dialog('open'); LoadCarousel(true); }); </code></pre> <p>Controller action:</p> <pre><code> public ActionResult ConfectionaryOption() { if (Request.IsAjaxRequest()) { IQueryable&lt;ItemType&gt; itemTypes; SessionOrders order = (SessionOrders)Session["BasketItems"]; order.HasBeenToConfectionary = true; itemTypes = this._itemTypeService.FindAllItemTypes().Where(i =&gt; i.ItemTypeID == 7 || i.ItemTypeID == 8); return PartialView("ConfectionaryForm", new ProductFormViewModel(itemTypes)); } else { return View("NotFound"); } } </code></pre> <p>Code for loading the appropriate carousel:</p> <pre><code>function LoadCarousel(upsell) { if (upsell) { onUpsellPopup = true; // Initiate the jCarousel on the partial view dialog $('#upsell &gt; #upsellLeft &gt; #ingredients &gt; #ingredientOptions').jcarousel({ scroll: 7, visible: 7, animation: 'slow', initCallback: function(c, s) { jcInstance = c; }, buttonNextHTML: null, buttonPrevHTML: null }); } else { onUpsellPopup = false; // Initiate the jCarousel on the view $('#ingredientOptions').jcarousel({ scroll: 7, visible: 7, animation: 'slow', initCallback: function(c, s) { jcInstance = c; }, buttonNextHTML: null, buttonPrevHTML: null }); } </code></pre> <p>Has anyone else had a similar issue?</p> http://stackoverflow.com/questions/1914544/replacing-div-content-using-jquery-in-a-jsp 0 Replacing div content using jquery in a jsp heeboir 2009-12-16T13:02:23Z 2009-12-17T14:12:34Z <p>So far I've been making an AJAX call to replace the content of a div with another page, using the following code:</p> <pre><code>&lt;script&gt; function fetchContainerContent(url, containerid) { var req = false if (window.ActiveXObject) { try { req = new ActiveXObject("Msxml2.XMLHTTP") } catch (e) { try { req = new ActiveXObject("Microsoft.XMLHTTP") } catch (e) {} } } else if (window.XMLHttpRequest) { req = new XMLHttpRequest() } else { return false } req.onreadystatechange = function() { requestContainerContent(req, containerid) } req.open('GET', url, true) req.send(null) } function requestContainerContent(req, containerid) { if (req.readyState == 4 &amp;&amp; (req.status==200 || window.location.href.indexOf("http")==-1)) document.getElementById(containerid).innerHTML = req.responseText } &lt;/script&gt; </code></pre> <p>I have tried transforming the above code to work with jQuery as below but it doesn't work. In other words, I am trying to mimic the end result of the above behaviour but it is nowhere near the same. In fact, nothing happens on screen, nothing changes. I should mention that I don't really need the Loading... but since the examples I've seen use it and since I'm not sure how to correctly syntax jQuery, I've left it in.</p> <pre><code>&lt;script&gt; function fetchContainerContent(url, containerid) { jQuery.ajaxSetup ({ cache: false }); var ajax_load = "loading...' /&gt;"; jQuery("#load_basic").click(function() { jQuery("#"+containerid).html(ajax_load).load(url); }); } &lt;/script&gt; </code></pre> <p>Thanks in advance. I'm really new to jQuery so I may have done something really stupid.</p> <p>After all the comments received (thanks guys!) I have left only the following:</p> <pre><code>function fetchContainerContent(url, containerid){ var ajax_load = "loading..."; $("#load_basic").click(function(){$("#"+containerid).html(ajax_load).load(url);}); </code></pre> <p>}</p> <p>but I'm still having problems as it does not update the page. No js error, nothing happens.</p> http://stackoverflow.com/questions/965083/jquery-sortable-list-wont-serialize-why 2 Jquery sortable list won't serialize, why? tharkun 2009-06-08T14:07:53Z 2009-12-17T14:11:11Z <p>I'm implementing a sortable list of images with jquery in a Zend Framework application. I just can't get the .sortable('serialize') method to return more than an empty string.</p> <p>When I try with a few simple examples outside my application it works.</p> <p>Does it matter that the snippet below is wrapped in various other and other tags. I think it shouldn't. The unordered list should be found just by the id, right?</p> <p>HTML:</p> <pre><code>&lt;ul id="mylist"&gt; &lt;li id="1"&gt; &lt;div&gt; &lt;img src="image_1.jpg" /&gt; &lt;p class="value_item"&gt;some text&lt;/p&gt; &lt;/div&gt; &lt;/li&gt; &lt;li id="2"&gt; &lt;div&gt; &lt;img src="image_2.jpg" /&gt; &lt;p class="value_item"&gt;some text&lt;/p&gt; &lt;/div&gt; &lt;/li&gt; &lt;/ul&gt; </code></pre> <p>JavaScript:</p> <pre><code>$(document).ready(function() { $('#mylist').sortable({ update: function() { var order = $('#mylist').sortable('serialize'); alert(order); } }); }); </code></pre> http://stackoverflow.com/questions/1921936/how-to-generate-a-popup-window-like-that-in-google-maps-using-jquery-or-jquery-pl 1 How to generate a popup window like that in Google maps using Jquery or Jquery plugin? Steven 2009-12-17T13:52:50Z 2009-12-17T14:01:51Z <p>When you use Google Maps, you click a marker on a map, then a window will pop up. You can even enter your mobile phone number and receives a sms from Google. How to generate that popup window using Jquery or Jquery plugin?</p> http://stackoverflow.com/questions/1921869/how-to-dynamicall-add-a-row-to-an-html-table-with-server-data-on-a-dropdown-cel 0 how to dynamicall add a row to an html table (with server data) on a dropdown cell in asp.net mvc oo 2009-12-17T13:41:21Z 2009-12-17T14:01:40Z <p>I have a dropdown cell and after clicking on an item i want to add a row to a html table. I did this using javascript: (addRowToTable is a basic javascript function)</p> <pre><code>&lt;script type='text/javascript'&gt; $(document).ready(function() { $('#locations').change(function() { if (this.selectedIndex != 0) { var support = new Array("True", "False"); addRowToTable(this.value, support , "Table"); this.remove(this.selectedIndex); this.selectedIndex = 0; } }); }); &lt;/script&gt; </code></pre> <p>but i now realized that some of the data that i need to show in the new table row, i don't have on the client side so i need to somehow:</p> <ol> <li>Pass the selected value to the server (controller action) and then get back the rest of the data attributes refresh the html table (ajax) with the new value on the client side after get the full data back on the server.</li> </ol> <p>Does anyone have any examples of trying to do something like this?</p> http://stackoverflow.com/questions/1917526/jquery-selector-question-referencing-a-specific-element-without-knowing-the-id 1 Jquery selector question: referencing a specific element without knowing the ID peacedog 2009-12-16T20:39:46Z 2009-12-17T14:00:43Z <p>Is there a way to reference a control via a Jquery selector without knowing an ID? I was envisioning a function called on mouseover. I've been looking through the documentation but I haven't found anything yet and have the vague sense I'm missing something easy.</p> <p>Update:</p> <p>Zombat, that seems reasonable but I have a problem here that appears to prevent me from going the parent -> child route. This is a simple search page displaying results to a user. It was created in a code generation app called Ironspeed Designer. Ironspeed appears to be placing it's results inside an asp:repeater which is inside an update panel and the magic of Ajax is fetching me a result set. I say all of this because while it works and I can see results I should, I can't see any of this stuff in the page source. And I mean "any of this stuff". I can see the header row for the table but nothing in the way of the body; not the data nor the markup surrounding it. The markup Ironspeed generates might be kindly described as a train wreck, and that's the stuff I can see (it's enough to drive a man to MVC, I tell ya).</p> <p>The element is an <strong>image</strong>. Naturally, there are many more images on the page than the ones I can concerned about.</p> http://stackoverflow.com/questions/1921832/client-side-javascript-jquery-file-manipulation-before-after-upload-download 1 Client side (javascript/jQuery) file manipulation before/after upload/download. Mark 2009-12-17T13:36:12Z 2009-12-17T13:39:57Z <p>I'm just sounding things out about this having looked around for a while and drawn a blank. I'd like to see if this is even possible as so far I can't see a way to do it.</p> <p>I want to encrypt a file locally (in the browser using existing libraries) before uploading it. Then I'll need to retrieve it and decrypt it before presenting the file to the user. Specifically, I can't send the file to the server for encryption before storage. Encryption/decryption needs to be performed client side.</p> <p>Here's a rough flow of what I need to do:</p> <ol> <li>Present user with a find-file widget.</li> <li>Read file into client side script (i.e. load it locally)</li> <li>Encrypt it on the client.</li> <li>Upload encrypted version, flush the client side and store the data.</li> </ol> <p>And, in reverse:</p> <ol> <li>Download the stored, encrypted version of the file.</li> <li>Decrypt it on the client.</li> <li>Present the decrypted file back to the user as a download.</li> </ol> <p>I've been looking for some kind of MIME encoding on the client (similar to the way email attachments are MIME encoded before being sent as plain text). I'm particularly interested in a jQuery method, as that's what the rest of my app is using, but plain old javascript would be fine.</p> <p>Any thoughts or pointers very gratefully received. This is the one I'm mulling over the holidays. So, thanks in advance for any comments.</p> http://stackoverflow.com/questions/1918124/dotted-border-turns-to-solid-if-object-is-animated-with-jquery 1 Dotted Border turns to solid if object is animated with jQuery. Serg Chernata 2009-12-16T22:06:08Z 2009-12-17T13:32:56Z <p>I have a simple setup: an image and then a paragraph with a bit of info that is hidden and then slides up over the image on mouse hover. If I try to apply a border-top that is dashed or dotted onto the paragraph it simply turns into a solid line. Is this a known issue with a fix? I even tried adding the dotted border through jQuery and it still comes out as a solid line. </p> <pre><code>&lt;div class="wrap"&gt; &lt;img src="images/fillertxt.jpg" alt="image" /&gt; &lt;img src="images/filler.jpg" class="front" alt="image" /&gt; &lt;p class="info"&gt; This is a short description with a bit of text. &lt;/p&gt; &lt;/div&gt; .wrap .info { width:204px; height:50px; background:url(images/infobg.jpg) repeat-x #8d9c0c; color:#f7f5ef; padding:3px; position:absolute; top:142px; left:0; border-top:3px dotted #8d9c0c; } $(document).ready(function(){ $("p.info").css("border-top","3px dotted #8d9c0c"); $(function(){ bindTypeOne(); $("input[type=radio]").click(function(){ if ($(this).attr("rel") == "type1"){ bindTypeOne(); } else if ($(this).attr("rel") == "type2"){ bindTypeTwo(); } }); }); function bindTypeOne() { $("div.wrap").hover(function(){ $(this).children("p.info").stop(); $(this).children(".front").stop().animate({"top":"141px"}, 400); },function(){ $(this).children("p.info").stop(); $(this).children(".front").stop().animate({"top":"0"}, 700); }); }; function bindTypeTwo() { $("div.wrap").hover(function(){ $(this).children(".front").stop(); $(this).children("p.info").stop().animate({"top":"80px","border-top":"3px dotted #8d9c0c"}, 400); },function(){ $(this).children(".front").stop(); $(this).children("p.info").stop().animate({"top":"142px"}, 700); }); }; }); </code></pre> http://stackoverflow.com/questions/1921401/how-to-use-jquery-in-palm-mojo 0 How to use jquery in palm mojo? Mi 2009-12-17T12:22:39Z 2009-12-17T13:32:24Z <p>How do I do to be able to use jquery in my palm mojo application?</p> http://stackoverflow.com/questions/1921342/how-do-i-get-a-value-of-a-span-using-jquery 0 How do I get a value of a <span> using jQuery? Felipe Barreiros 2009-12-17T12:10:23Z 2009-12-17T13:26:53Z <p>This is basic.</p> <p>How do I get the value 'This is my name' of the above span?</p> <pre><code>&lt;div id='item1'&gt; &lt;span&gt;This is my name&lt;/span&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/1920859/jquery-slide-div-from-bottom-going-wrong-in-google-chrome 0 jQuery slide div from bottom going wrong in Google Chrome Hady Osman 2009-12-17T10:42:00Z 2009-12-17T13:18:43Z <p>I have written my own image slider in jQuery that slides up a caption div from the bottom of the image.</p> <p>Please see the demo on the following link: <a href="http://beta.marhaba.co.nz/about" rel="nofollow">http://beta.marhaba.co.nz/about</a></p> <p>When viewing this page in Google Chrome, you will notice how the caption div does not appear from the bottom of the image, but from below the image. To best understand what I am describing please see the link I have posted.</p> <p>How do I fix this behaviour? Please note that the caption div has a height: auto.</p> <p>I currently animate the caption div as follows:</p> <pre><code>$('.caption-container', $(this)).effect('slide', {direction: 'down'}, 'fast'); </code></pre> http://stackoverflow.com/questions/1503638/jquery-validation 1 JQuery Validation rabashani 2009-10-01T12:19:42Z 2009-12-17T13:00:00Z <pre><code>var formValidationRules = { rules: { password: { required: true, remote: '/account/delete' } }, messages: { "password": { required: "Please enter your password", remote: "Invalid password, try again." } } }; </code></pre> <p>I wrote such validation, but I found out the the Validation will check for each event for the remote and the required.</p> <p>I would like to perform such task only when submitting, (no blur, no keyup) - what is the best way to do this?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1921423/dynamically-change-the-array-based-on-text-entered-in-jquery-autocomplete 0 Dynamically change the array based on text entered in jquery autocomplete kayteen 2009-12-17T12:27:22Z 2009-12-17T12:49:56Z <p>Hi All,</p> <p>I have a textbox for which i applied the autocomplete plugin of jquery. Now the issue is i want to capture what the user entered... say like if the user types a number then the result list should be of ARRAY1, if he enters a alphabet the result list should be of ARRAY2</p> <pre><code>$("#text_box").autocomplete(/*here i pass ARRAY1(numeric)/ARRAY2(alphabets) based on text entered*/, { width: 572, highlight: false, multiple: true, multipleSeparator: " ", scroll: true, scrollHeight: 250, matchContains: true, minChars: 3 }); </code></pre> <p>Pls help me guys..!! Thanks in advance</p>