jquery

  • JQuery Animation Reference

    Can be used without additional parameters .animate() Perform a custom animation of a set of CSS properties. .clearQueue() Remove from the queue all items that have not yet been run. .delay() Set a timer to delay execution of subsequent items… Continue reading

  • Get Current URL in Javascript

    JS (JQuery): JS (standard): Continue reading

  • JQuery Grid Themes

    Useful links to JQuery grids utilizing (mostly) standard UI themes and/or very little code. Google! http://jquery-ui.googlecode.com/svn/branches/labs/grid/tests/static/grid/default.html Datatables.Net: http://www.datatables.net/styling/themes/smoothness Ke-Cai: http://www.ke-cai.net/2010/01/theme-your-table-with-jquery-ui.html Trirand: http://www.trirand.com/blog/jqgrid/jqgrid.html Stackoverflow: http://stackoverflow.com/questions/2613632/jquery-ui-themes-and-html-tables Continue reading

  • JQuery and Partial Postbacks

    I recently came across an issue where JQuery bindings no longer functioned after a partial postback and stumbled upon some code that was helpful in most cases. Javascript (JQuery): And alternatively.. This code will not always work however, as was… Continue reading

  • JQuery and Frames

    Although there is definitely some room for debate in the web development and design community on where the usage of frames is necessary, there are some situations where they cannot be avoided. Manipulation of data within these frames can be… Continue reading

  • JQuery AJAX Reference

    Keep in mind when using code below if requesting a page that requires login/restricted access, users login session is not carried over. Snippet below is sample code usage illustrating two different methods of achieving similar result. See references for more… Continue reading

  • JQuery Is Not Defined

    This is a common error for users implementing JQuery UI. Usually if you see this message, this could mean a few things: – There is a syntax issue or bad link referencing the JQuery (min/full) JS. Use your debuggers to… Continue reading

  • Using jQuery and ScriptManager to update dynamic page elements

    I recently came across a situation where an element on the page was not updating dynamically after post backs. It was quick and easy to add an update panel and the necessary logic to use the built in asp .Net… Continue reading