Use .prop
instead (and clean up your selector string):
function disable(i){ $("#rbutton_"+i).prop("disabled",true); }
generated HTML:
<button id="rbutton_1" onclick="disable(1)">Click me</button> <!-- wrap your onclick in quotes -->
But the “best practices” approach is to use JavaScript event binding and this
instead:
$('.rbutton').on('click',function() { $(this).prop("disabled",true); });
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> <button class="rbutton">Click me</button>
Related Posts:
- How to change a text with jQuery
- jQuery animate scroll
- How to fix the ‘Missing required request header. Must specify one of: origin,x-requested-with’ Ajax Error
- jQuery removing ‘-‘ character from string
- jquery fadeIn not working
- bootstrap 3 navbar collapse button not working
- Easiest way to toggle 2 classes in jQuery
- $.widget is not a function
- Get a form action/url with jquery
- Is this Solution for Caches vs Cookies Going to Get Me in Trouble?
- How do I make script load after jquery?
- How to control what jQuery version to include, with wp_enqueue_script
- Creating Ajax backend for Specialised Page Template? Should admin-ajax.php be used?
- Best Practices for Seperating jQuery from HTML/PHP
- Add custom shortcode button to Editor
- Using Underscore Templates in WordPress
- Why do we include jQuery in the header?
- Display admin_notice error message form jQuery event
- Passing a varible from jQuery to PHP
- Asynchronous Javascript Loaders
- Unbind postbox click handler
- Querystring data gets truncated
- This jQuery snippet doesn’t seem to work with WordPress
- Displaying custom post-types in a Fancybox div and then linking to them
- How to Use JSON With AJAX?
- wp_localize_script, variable is not defined in jquery
- WP REST return value to error function from Request
- How to Make Google Jquery Library Async or Defer?
- Hide/show customizer controls based on other settings in Customizer
- When does WordPress automatically enqueue jQuery?
- WordPress 3.6 and Accordion UI issues?
- jQuery Tree View and wp_list_pages
- WordPress Ajax not function as I expect… what’s wrong?
- Vimeo Froogaloop API, working in Fiddle but not WP
- Cannot prefill hidden Ninja Forms fields
- How to show jquery popup only in one page or once?
- How to get those data using with ajax json?
- SmoothScroll not working in WordPress
- SSL issues with WordPress site
- Blip Slideshow plugin Mootools/jQuery conflict
- How to tell WordPress that jQuery exists on the page to avoid duplicates via wp_enqueue_scripts
- Which jQuery packages are included in WordPress 3.1.2?
- Good Solution for Adding jQuery Tabs Anywhere Within WordPress?
- jQuery code not working in widgets page
- Load random posts without refreshing page (jQuery)?
- How to use jquery included with wordpress for jpanelmenu
- Cannot get Jquery to work with wordpress
- Problem getting .js file to load via a plugin
- Using jquery-1.7.2.min.js instead of the wordpress jquery
- WordPress error when replacing local jQuery by externally-hosted
- Adding jQuery UI elements to WordPress page
- Create special WordPress slideshow with “jquery.cycle.all.js”
- Jquery UI Google CSS, from where?
- datepicker for custom post type admin
- Disable Cloudflare Rocket Loader for jQuery javascript and make it load first
- How to add plugin with jQuery to custom theme?
- JQuery Counter Limit not working for WP Comment Textarea
- jQuery selectable() function won’t work in wordpress
- jQuery(selector) vs. $(selector)
- Null/undefined return in WordPress AJAX request
- Manipulate retrieved ajax data in php
- Disable auto hide of the login form on Woocommerce’s checkout page
- How do I make Contact Form 7 pop up in thickbox? [closed]
- WordPress Front-End Theme Editor
- Sorting dynamic table content with jQuery
- jQuery .load and WP function
- Determine image height within Fancybox
- Fire action after enqueue script
- How can I get this menu container to be the height of the contents?
- JQuery is not working after complete load of the page
- Carousel Slider For Custom PHP Snippet Is Not Working
- why does so many javascript libraries are loaded along with my website?
- Why does my media selection script write to ONLY the first input field?
- Modify the href attribute of tag dynamically in WordPress
- Add a jQuery snippet for sepcific user role
- Move jQuery on *top* of footer
- How to specify url for ajax call in wordpress plugin
- Call admin ajax using absolute url? Relative URL breaks (frontend ajax)
- Dynamic image grid gallery
- Responsive framework – edit child js
- Page keeps refreshing with Ajax form
- JS script not being included [closed]
- jquery issue in functions.php
- JS plugin script loading but not working
- WP Calendar Shortcode not working on my theme
- WooCommerce – PrettyPhoto appending URL with #prettyPhoto
- Are you sure popup on Contact Form 7 [closed]
- change the icon of a custom post type in WordPress to use twitter boostrap
- Using jQuery toggle() in WordPress post to show/hide Tweet button?
- Call a Simple JQuery from within Flash
- Ajax request with jQuery without WP_ajax
- JQuery WordPress gallery [closed]
- JS file not loading [closed]
- How can insert JQuery in WordPress? [closed]
- I need a Pop up with description when i click an image
- Jquery in IE, fully messed up
- Theme variation conflict with jquery select2 dropdown
- Fire an event after Featured Image selection
- Elementor form – checkboxes validation
- How to add input file plain text and submit to publish?